Showing posts with label sharepoint framework pnp delete list column. Show all posts
Showing posts with label sharepoint framework pnp delete list column. Show all posts

Sunday, 17 March 2019

spfx delete list column using pnp

private DeleteSPListColumn():void
{

pnp.sp.web.lists.getByTitle("Test").fields.getByTitle("EmployeeName")
.delete().then(function(response){
console.log("Column Deleted!");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});

}