CustomAction菜单项是否适用于子内容类型?

时间:2009-08-24 12:29:40

标签: sharepoint sharepoint-2007

我有一个CustomAction定义,其注册类型为“ContentType”:

<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
        Id="Sample.DuplicateListItem"
        Location="EditControlBlock"
        Title="Copy Item..."
        RegistrationType="ContentType"
        RegistrationId="0x01010012">
        <UrlAction Url="~site/_layouts/TheKidListActions/CopyListItem.aspx?List={ListId}&amp;ID={ItemId}"/>   
    </CustomAction>
</Elements>

使用此内容类型的所有文档库都将显示此上下文项菜单。

我的问题是,这个上下文项菜单是否会显示一个内容类型为0x010100120013(继承自0x01010012)的列表?

1 个答案:

答案 0 :(得分:2)

我没有尝试更改,但是当您将CustomAction与Parent内容相关联时,它也会被推送到Child。

我从Link

获得了这些信息
  

RegistrationId - 将此CustomAction附加到其上的标识符。由于我们选择按内容类型附加并且我们的RegistrationId是0×01,因此我们将此CustomAction附加到Item内容类型以及从中继承的所有内容。