我创建了一个具有内容类型的功能:
<ContentType ID="0x01007C963A8770A24bbfBDBCE157B96EE769"
Name="Send" Group="Demo" Version="1">
</ContentType>
我想为此内容类型创建自定义操作。
这适用于欧洲央行(每个项目标题的弹出菜单):
<CustomAction
Id="Demo.Send.PopupMenu"
Title="Send"
Location="EditControlBlock"
Description="Hold"
RegistrationType="ContentType"
RegistrationId="0x01007C963A8770A24bbfBDBCE157B96EE769">
<UrlAction Url="http://www.google.com/search?q={ItemId} Cookies"/>
</CustomAction>
但是,我无法让它在表单的工具栏(编辑或显示)上工作:
<CustomAction
Id="Demo.Send.DisplayFormToolbar"
Title="Send"
Location="DisplayFormToolbar"
Description="Send"
RegistrationType="ContentType"
RegistrationId="0x01007C963A8770A24bbfBDBCE157B96EE769"
Sequence="108">
<UrlAction Url="http://www.google.com/search?q={ItemId} Cookies"/>
</CustomAction>
我没有收到任何错误消息,我只是看不到按钮。如果我将 更改为,
它会起作用,但是我会在所有内容类型(实际上是所有项目)上看到它。RegistrationId
0x01
知道这段代码有什么问题吗?