如何在Alfresco中将一段内容与另一段内容相关联?

时间:2012-04-19 21:35:16

标签: alfresco

我有两个文件夹,一个是图像,另一个是文本文件。

如何在文本文件中添加属性,允许用户从图像文件夹中选择项目? (我知道如何使用方面添加数字和日期等基本属性。)

我已经尝试了这些,但Share将它们渲染为只读框。

            <property name="my:propQName">
                <title>QName Property</title>
                <type>d:qname</type>
            </property>

            <property name="my:propNodeRef">
                <title>Node Reference Property </title>
                <type>d:noderef</type>
            </property>

            <property name="my:propPath">
                <title>Path Property </title>
                <type>d:path</type>
            </property>

1 个答案:

答案 0 :(得分:3)

您需要创建association

      <associations>
        <association name="my:relatedImage">
           <source>
              <mandatory>true</mandatory>
              <many>false</many>
           </source>
           <target>
              <class>my:imageType</class>
              <mandatory>true</mandatory>
              <many>false</many>
           </target>
        </association>
     </associations>

这将默认呈现为选择器。您可以像share-config-custom.xml一样configure the picker照常使用。{/ p>


编辑:official documentation关于协会