如何在列表中指定元素名称?

樱桃

这是一个模型和数据列表定义:

<!-- DataLists-->
<type name="sc:contractType">
    <title>Options</title>
    <parent>dl:dataListItem</parent>
    <properties>
        <property name="sc:type">
            <title>Type</title>
            <type>d:text</type>
        </property>
    </properties>
</type>

<!-- workflow model-->
<type name="sc:startProcesstask">
    <parent>bpm:startTask</parent>
    <properties>
        <property name="sc:helloName">
            <type>d:text</type>
            <mandatory>true</mandatory>
            <multiple>false</multiple>
        </property>
    </properties>
   <associations>
       <child-association name="sc:requestCategory"">
           <target>
              <class>sc:contractType</class>
              <mandatory>true</mandatory>
              <many>false</many>
            </target>
        </child-association>
    </associations>
</type>

当我编辑模型并尝试选择数据列表项值时,我必须:

  1. 浏览整个存储库以查找数据列表项。
  2. 请参阅UUID值,而不是type项目列表中属性。

有没有一种方法可以让alfrescotype在浏览列表项时显示由UUID插入的属性?

杰夫·波茨(Jeff Potts)

问题在于,用于选择该子关联目标的默认表单控件不足以满足您的需求。因此,您需要提供替代的自定义表单控件。文档使用一个非常简单的示例演示了如何执行此操作。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章