Am on creating a simple SharePoint to-do list web-part, to do this need to access the SharePoint List named To-doList there i stored all the tasks. how could i access it through the type script or is there any methods in SharePoint Frame Works ?
private _getlistdata(): void{
let html: string="";
const elemennt: Element= this.domElement.querySelector("#listdata");
pnp.sp.web.lists.getByTitle("DispListApp").get().then(Response => {
elemennt.innerHTML= html;
});
}
i have added this code and get connect to the List Named DispListApp but unable to display the list items Can u Pls Help Me @saad