0

我正在处理 Documentset 类型的自定义内容类型。我想设置允许的内容类型,但这不起作用,它只显示默认文档。我阅读了几个博客,但找不到我的解决方案。

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <!-- Parent ContentType: Document Set (0x0120D520) -->
  <ContentType ID="0x0120D520008d2ff418027e4c31b54d155b98596748"
               Overwrite="True"
               Name="Custom Dossier"
               Group="Custom group"
               Description="Custom dossier"
               Inherits="True"
               Version="0">
    <FieldRefs>
            <FieldRef ID="{8D6C094C-3E1F-41f4-BEE3-25B27EE09702}" Name="Dossier_Nummer" DisplayName="Dossiernummer" Required="True"  />
    </FieldRefs>
    <XmlDocuments>
      <XmlDocument NamespaceURI="http://schemas.microsoft.com/office/documentsets/allowedcontenttypes">
        <act:AllowedContentTypes xmlns:act="http://schemas.microsoft.com/office/documentsets/allowedcontenttypes" LastModified="05/31/2012 08:46:56">
          <AllowedContentType id="0x0101" />
          <AllowedContentType id="0x0101000490d50c50624b6ca21c637ef39cd89b" />
        </act:AllowedContentTypes>
      </XmlDocument>
    </XmlDocuments>
  </ContentType>
</Elements>
4

2 回答 2

0

您是否尝试添加文档集模板所需的所有节点?一个很好的例子在这里:http ://code.msdn.microsoft.com/office/Create-Custom-Document-Set-318393ce/sourcecode?fileId=57420&pathId=1173424883

于 2014-04-27T04:43:41.347 回答
0

您可以使用ContentType 绑定元素将 CT 分配给文档库。

于 2012-06-01T06:19:01.770 回答