In the previous blog here, we looked at how to deploy and install SharePoint Apps. Now let’s look at installing SharePoint Framework extensions – Listview command sets programmatically.
SharePoint CSOM
SharePoint Framework has three type of extensions that could be created – Application customiser, Listview command sets and Field customisers. In this blog, we will look at adding list view command sets programmatically.
Listview command extensions are actually custom actions installed in a library or list. Hence to activate it we will go to the library/list, find the installed custom actions, if not installed we will install the new custom action. Below is the code for that.
PowerShell
We could also use PnP PowerShell to add the Library extension onto a page using the code below
Hence, above we saw how we could add extensions onto a library or list using CSOM or PowerShell
Happy Coding!!