Showing posts with label sharepoint framework add site column using pnp. Show all posts
Showing posts with label sharepoint framework add site column using pnp. Show all posts

Sunday, 17 March 2019

Add Site Columns using pnp



private AddSiteColumn():void
{
pnp.sp.site.rootWeb.fields.addText("DepartmentName").then(function(response){
console.log("New Site Column Added!");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});
}