Showing posts with label sharepoint framework site column. Show all posts
Showing posts with label sharepoint framework site column. 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);
});
}