CustomAction Basics in SharePoint

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 myIntro 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:

    
    
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <% @ 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:

    
    
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <? 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;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):

  • Id – This is an optional field to identify this CustomAction.  You can make it whatever you would like.
  • RegistrationType – How we will specify what items get this CustomAction.  In our case, we have stated that a specific content type will get it.
  • RegistrationId – The identifier of what will get this CustomAction attached to it.  Since we have chosen to attach by content type and our RegistrationId is 0×01, we are attaching this CustomAction to the Item content type and all that inherit from it.
  • Title – This is the text to display for this CustomAction.
  • Description – This is a description of the CustomAction.  It will be displayed as a tooltip when the user hovers over the link for the CustomAction.
  • Location – The location attribute specifies where to place the CustomAction.  In our case, we have chosen DisplayFormToolbar which will display on the details page of the item.
  • UrlAction Url – This is the URL that we will send the user to when the CustomAction is clicked.  The items in curly braces are variables provided by SharePoint that contain the current List ID and the current Item ID.

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.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值