Add Custom Ribbon Items To List Forms On SharePoint Using CSOM PowerShell

Introduction

In this article, you will learn- how to add custom ribbon items (user actions) for various list forms, using CSOM Powershell on SharePoint 2013 / SharePoint online sites. The list forms considered are new form, display form, and edit form.

Steps Involved

The following prerequisites are required to be executed, before going for any operations, using CSOM PowerShell on SharePoint sites.

  1. Add the references, using the Add-Type command with the necessary reference paths. The necessary references are Client.dll, Client.Runtime.dll and publishing.dll.

    Add-Type -Path

    "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.dll"

    Add-Type -Path

    "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Runtime.dll"

    Add-Type -Path

    "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\ISAPI\Microsoft.SharePoint.Client.Publishing.dll"

  2. Initialize the client context object with the site URL.
    1. $siteURL = ""  
    2. $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($siteURL)  
  3. If you are trying to access SharePoint Online site, then you need to setup the site credentials with the credentials parameter and load it to the client context. 
    1. #Not required for on premise site - Start  
    2. $userId = ""  
    3. $pwd = Read-Host -Prompt "Enter password" -AsSecureString  
    4. $creds = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($userId, $pwd)  
    5. $ctx.credentials = $creds  
    6. #Not required for on premise site - End  
  4. If you are trying to access the SharePoint on premise site, then the credentials parameter is not required to be set to the context but you need to run the code on the respective SharePoint Server or you need to pass the network credentials and set the context.
    1. #Credentials for on premise site - Start  
    2. $pwd = Read-Host -Prompt "Enter password" -AsSecureString  
    3. $creds = New-Object System.Net.NetworkCredential("domain\userid", $pwd)  
    4. $ctx.Credentials = $creds  
    5. #Credentials for on premise site - End  

We will see how we can add the custom ribbon items (actions) to the SharePoint list forms. The following are the steps, common to any list form. The code snippets, for adding ribbon items to various forms are shown in the sections, below:

  • Get the existing user action collection. Access the Web and get the existing user actions, using UserCustomActions property. Load and execute the property.

  • Add new custom action to the user actions collection. The necessary parameters for new action are registration ID, title, registration type and location.

    • Registration ID - Corresponding List template ID to add the user action. For example, here 100 denotes the custom list templates.
    • Registration Type - Denotes association type.
    • Location - Custom action location.

  • Build the XML for the new definition with corresponding handler. In this case, I have considered button as a custom action and associated alert box to the action. You can build your own logic on the command action parameter. Location in the XML denotes the place, where item will be placed in the ribbon. 

  • Update and execute to see the changes.
The following steps shows us the code and the parameter values to the respective forms.

Adding actions to Display Form
  • The ribbon custom action location should be CommandUI.Ribbon.DisplayForm. 

  • The command definition location should look like Ribbon.ListForm.Display.Actions.Controls._children. Here, the location denotes the command will be added in actions group under ribbon. You can specify other group names as well.

  • The command action shows the custom function, to be defined. Here, you will get an alert box with the corresponding item ID on click of a button.
The following piece of code adds custom ribbon items to te display form.
  1. function AddDisplayRibbonItem(){    
  2.     $web = $ctx.Site.RootWeb    
  3.     $userActions = $web.UserCustomActions    
  4.     $ctx.Load($userActions)     
  5.     $ctx.ExecuteQuery()     
  6.     
  7.     $newRibbonItem = $userActions.Add()    
  8.     $newRibbonItem.RegistrationId = "100"    
  9.     $newRibbonItem.Title = "Display Form Custom Action"    
  10.     $newRibbonItem.RegistrationType = [Microsoft.SharePoint.Client.UserCustomActionRegistrationType]::List    
  11.     $newRibbonItem.Location = "CommandUI.Ribbon.DisplayForm"    
  12.     
  13.     $ribbonUI = '<CommandUIExtension>    
  14.         <CommandUIDefinitions>    
  15.             <CommandUIDefinition Location="Ribbon.ListForm.Display.Actions.Controls._children">    
  16.                  <Button Id="Ribbon.ListForm.Display.Actions.CustomFunction" Alt="Show Alert" Sequence="100"    
  17.                  Command="CustomFunction"    
  18.                  LabelText="Show Item ID"    
  19.                  TemplateAlias="o1"    
  20.                  Image32by32="_layouts/15/images/alertme.png"    
  21.                  Image16by16="_layouts/15/images/alertme.png" />    
  22.             </CommandUIDefinition>    
  23.        </CommandUIDefinitions>    
  24.        <CommandUIHandlers>    
  25.           <CommandUIHandler Command="CustomFunction"    
  26.                CommandAction="javascript:alert(''{ItemId}'');"/>    
  27.           </CommandUIHandlers>    
  28.        </CommandUIExtension >'    
  29.     
  30.     $newRibbonItem.CommandUIExtension = $ribbonUI    
  31.     $newRibbonItem.Update()    
  32.     $ctx.Load($newRibbonItem)    
  33.     $ctx.ExecuteQuery()    
  34. }  
Go to custom list (list template id:100). Select any item and view. The display form page will open with the custom action.
 
Adding actions to Edit Form
  • The ribbon custom action location should be CommandUI.Ribbon.EditForm.

  • The command definition location should look like Ribbon.ListForm.Edit.Actions.Controls._children. Here, the location denotes the command, which will be added in actions group under ribbon. You can specify other group names as well. 

  • The command action shows the custom function to be defined. Here, you will get an alert box with a corresponding item ID on click of a button.
The following piece of code adds custom ribbon items to edit form page.
  1. function AddEditRibbonItem(){  
  2.     $web = $ctx.Site.RootWeb  
  3.     $userActions = $web.UserCustomActions  
  4.     $ctx.Load($userActions)   
  5.     $ctx.ExecuteQuery()   
  6.   
  7.     $newRibbonItem = $userActions.Add()  
  8.     $newRibbonItem.RegistrationId = "100"  
  9.     $newRibbonItem.Title = "Edit Form Custom Action"  
  10.     $newRibbonItem.RegistrationType = [Microsoft.SharePoint.Client.UserCustomActionRegistrationType]::List  
  11.     $newRibbonItem.Location = "CommandUI.Ribbon.EditForm"  
  12.   
  13.     $ribbonUI = '<CommandUIExtension>  
  14.         <CommandUIDefinitions>  
  15.             <CommandUIDefinition Location="Ribbon.ListForm.Edit.Actions.Controls._children">  
  16.                  <Button Id="Ribbon.ListForm.Edit.Actions.CustomFunction" Alt="Show Alert" Sequence="100"  
  17.                  Command="CustomFunction"  
  18.                  LabelText="Show Item ID"  
  19.                  TemplateAlias="o1"  
  20.                  Image32by32="_layouts/15/images/alertme.png"  
  21.                  Image16by16="_layouts/15/images/alertme.png" />  
  22.             </CommandUIDefinition>  
  23.        </CommandUIDefinitions>  
  24.        <CommandUIHandlers>  
  25.            <CommandUIHandler Command="CustomFunction"  
  26.                 CommandAction="javascript:alert(''EditForm-{ItemId}'');"/>  
  27.            </CommandUIHandlers>  
  28.        </CommandUIExtension >'  
  29.   
  30.     $newRibbonItem.CommandUIExtension = $ribbonUI  
  31.     $newRibbonItem.Update()  
  32.     $ctx.Load($newRibbonItem)  
  33.     $ctx.ExecuteQuery()  
  34. }  
Go to custom list (list template id:100). Select any item and edit. The edit form page will open with the custom action.

Adding actions to New Form
  • The ribbon custom action location should be CommandUI.Ribbon.NewForm.

  • The command definition location should look like Ribbon.ListForm.Edit.Actions.Controls._children (Edit action specified, since edit operation is carried out for the form). Here, the location denotes the command, that will be added in actions group under ribbon. You can specify other group names as well.

  • The command action shows the custom function to be defined. Here, you will get an alert box with a corresponding list ID on click of a button.
The following piece of code adds custom ribbon items to new form page.
  1. function AddNewRibbonItem(){  
  2.     $web = $ctx.Site.RootWeb  
  3.     $userActions = $web.UserCustomActions  
  4.     $ctx.Load($userActions)   
  5.     $ctx.ExecuteQuery()   
  6.   
  7.     $newRibbonItem = $userActions.Add()  
  8.     $newRibbonItem.RegistrationId = "100"  
  9.     $newRibbonItem.Title = "New Form Custom Action"  
  10.     $newRibbonItem.RegistrationType = [Microsoft.SharePoint.Client.UserCustomActionRegistrationType]::List  
  11.     $newRibbonItem.Location = "CommandUI.Ribbon.NewForm"  
  12.   
  13.     $ribbonUI = '<CommandUIExtension>  
  14.         <CommandUIDefinitions>  
  15.              <CommandUIDefinition Location="Ribbon.ListForm.Edit.Actions.Controls._children">  
  16.                   <Button Id="Ribbon.ListForm.Display.Actions.NewCustomFunction" Alt="Show Alert" Sequence="100"  
  17.                   Command="NewCustomFunction"  
  18.                   LabelText="Show List ID"  
  19.                   TemplateAlias="o1"  
  20.                         Image32by32="_layouts/15/images/alertme.png"  
  21.                         Image16by16="_layouts/15/images/alertme.png" />  
  22.             </CommandUIDefinition>  
  23.        </CommandUIDefinitions>  
  24.        <CommandUIHandlers>  
  25.             <CommandUIHandler Command="NewCustomFunction"  
  26.                  CommandAction="javascript:alert(''{ListId}'');"/>  
  27.             </CommandUIHandlers>  
  28.       </CommandUIExtension >'  
  29.   
  30.     $newRibbonItem.CommandUIExtension = $ribbonUI  
  31.     $newRibbonItem.Update()  
  32.     $ctx.Load($newRibbonItem)  
  33.     $ctx.ExecuteQuery()  
  34. }  
Go to custom list (list template id:100). Click on the new item. The new form page will open with the custom action. The following image shows the custom action added.

 
Note - The above set of operations (functions) needs to be called, in order to execute it. 
 
Summary

Thus, you learned how to add custom ribbon items (user actions) to the SharePoint list forms (new/display/edit forms), using CSOM PowerShell on SharePoint 2013 / SharePoint online sites.