CustomActions allow you to provide an easy way for an end user to perform some sort of action on or with a specific list item that is not available in a standard SharePoint installation.
Let’s go through a simple demo of using a CustomAction. In this demo, we will create a CustomAction which will redirect to a custom ASPX page and display some information about the list item. To start, let’s create a new WSPBuilder project named “CustomActionsDemo” and add a new Blank Feature called “DemoCustomAction”. (If you have never used WSPBuilder before, please check out my Intro to WSPBuilder post.) Use the following in the feature settings dialog:
Next, we’ll need to add a LAYOUTS folder to the folder that represents the 12 hive in our project. Beneath that, add a “DemoCustomAction” folder. Once we have these folders added, WSPBuilder will automatically knows how to push these files out to the 12 hive. At this point, your project folder structure should look like this:
Now we can go ahead and add a new web form without code behind to the LAYOUTS/DemoCustomAction folder. Name it ViewListItem.aspx and put the following code into it:
<% @ Page Language = " C# " %>
<% @ Import Namespace = " Microsoft.SharePoint " %>
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >
< html xmlns = " http://www.w3.org/1999/xhtml " >
< head runat = " server " >
< title > View List Item </ title >
< script runat = " server " >
protected void Page_Load( object sender, EventArgs e)
{
string ListId = Request.Params[ " ListId " ];
string ItemId = Request.Params[ " ItemId " ];
Response.Write( " <strong>List ID:</strong> " + ListId + " <br /> " );
Response.Write( " <strong>Item ID:</strong> " + ItemId + " <br /> " );
SPSite thisSite = SPContext.Current.Site;
SPList thisList = thisSite.RootWeb.Lists[ new Guid(ListId)];
SPListItem thisItem = thisList.GetItemById(Convert.ToInt32(ItemId));
Response.Write( " <strong>Item Title:</strong> " + thisItem[ " Title " ].ToString());
}
</ script >
</ head >
< body >
< form id = " formMain " runat = " server " >
</ form >
</ body >
</ html >
The code above uses two parameters which are generated and passed in via the URL from our CustomAction. It then uses these two parameters, ListId and ItemId, to find the specific SPListItem and display it’s Title field.
Now all that is left to do is write the CustomAction specification for our feature. The following code should be placed into the elements.xml file that was generated for you when you added the blank feature to the project:
<? xml version = " 1.0 " encoding = " utf-8 " ?>
< Elements xmlns = " http://schemas.microsoft.com/sharepoint/ " >
< CustomAction Id = " Demo Custom Action "
Title = " Invoke Demo Custom Action "
Location = " DisplayFormToolbar "
Description = " Our Demo Custom Action "
RegistrationId = " 0x01 "
RegistrationType = " ContentType " >
< UrlAction Url = " /_layouts/DemoCustomAction/ViewListItem.aspx?ListId={ListId}&amp;ItemId={ItemId} " />
</ CustomAction >
</ Elements >
This is the XML that specifies your CustomAction. Here is a quick run-through of the attributes used (Note that there is a full page on MSDN explaining all of the attributes here: http://msdn.microsoft.com/en-us/library/ms460194.aspx):
Now that our coding is complete, we can deploy this feature out to SharePoint using WSPBuilder. After deploying the feature, we should see the feature available in Site Collection Features.
Go ahead and activate the feature. After activation, create a custom list and add a new list item to it:
Now if you view the item, you should see a new item in the top of the toolbar called “Invoke Demo Custom Action”.
Go ahead and click it. This will invoke the CustomAction we just wrote and re-direct you to the custom page that we wrote earlier. If all went well, you should see something like this:
That’s about it for CustomAction basics. Obviously you can use this technique to link to a page that does much more than just display some information about the list item. Stay tuned for more on CustomActions in the future.