I have a CustomAction definition with RegistrationType = "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}&ID={ItemId}"/>
</CustomAction>
</Elements>
All document libraries that use this type of content will display this menu of contextual elements.
My question is: will this context menu menu be displayed for a list that has content type 0x010100120013 (inherited from 0x01010012)?
source
share