Showing posts with label custom Action. Show all posts
Showing posts with label custom Action. Show all posts

Thursday, June 9, 2016

09 Jun

Show custom action in ribbon for only one list

Example Code: <CustomAction ControlAssembly="CustomProject.Actions"                  ControlClass="CustomProject.Actions"                  ControlSrc="/_layouts/test/testPage.aspx"             ...

Wednesday, May 18, 2016

18 May

how to Change Custom List Close Button

$(document).ready(function() {     var button = $("input[value=Close]");     // change redirection behavior         button.removeAttr("onclick");         button.click(function() {             var elementName = $(this).attr("name");  ...

Monday, March 14, 2016

14 Mar

Add a button to ribbon in SharePoint 2013

SharePoint Designer 2013 can be used to create a ribbon button for SharePoint list or library. Once clicked, the button will perform a custom action function. Step 1: In SharePoint Designer 2013, open the site containing the library or list where the custom action button on the ribbon will be deployed. Step 2: Open...