如何在 sharepoint 2010 中使用 CustomAction 添加功能区项目
问问题
12387 次
2 回答
3
我真的推荐这个博客系列:http ://www.sharepointnutsandbolts.com/2010/01/customizing-ribbon-part-1-creating-tabs.html
于 2012-10-22T13:14:06.000 回答
3
以下是使用 SharePoint 2010 中的 CustomAction 将名为“测试操作 1”的功能区项(按钮)添加到 TemplateType = 10003 的列表的步骤
1.添加一个新元素并添加以下代码。请注意,有两个 CustomAction。一个添加功能区按钮,另一个添加 javascript 文件。
RegistrationId 与 ListTemplateType 相同。
有关默认服务器功能区自定义位置的列表,请参阅本文。
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<CustomAction ShowInLists="TRUE" Id="TestAction1" RegistrationType="List" RegistrationId="10003" Location="CommandUI.Ribbon">
<CommandUIExtension>
<CommandUIDefinitions>
<CommandUIDefinition Location="Ribbon.ListItem.Actions.Controls._children">
<Button Id="Ribbon.ListItem.Actions.TestAction1" Alt="Test Action 1" Sequence="10" Image32by32="/_layouts/images/ACTIONSEDITPAGE.PNG" Command="Test_Action1" LabelText="Test Action 1" TemplateAlias="o2"/>
</CommandUIDefinition>
</CommandUIDefinitions>
<CommandUIHandlers>
<CommandUIHandler Command="Test_Action1" CommandAction="javascript:TestAction1();" />
</CommandUIHandlers>
</CommandUIExtension>
</CustomAction>
<CustomAction Id="Test.Ribbon.TestScript" Location="ScriptLink" ScriptSrc="~/_layouts/SPTest/TestJScript1.js" />
</Elements>
2.映射 Layouts 文件夹并添加 TestJScript1.js 文件。
function TestAction1() {
alert("This the test action 1");
}
查看示例项目结构
于 2012-10-22T23:48:29.770 回答