Showing posts with label Sharepoint framework add list using pnp. Show all posts
Showing posts with label Sharepoint framework add list using pnp. Show all posts

Sunday, 17 March 2019

Add SPList using pnp Sharepoint framework



private AddSPList():void
{
pnp.sp.web.lists.add("Test","Test lists").then(function(response){
console.log("SPList added successfully !");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});;
}