我已经在Alfresco中成功创建了一个新的数据列表类型,但是很难弄清楚调用标记以在字段下实现描述。我咨询了Data Dictionary,但无法找到它。
它可能不存在,但this screenshot让我充满希望。如您所见,修改日期字段下面有 DD / MM / YYYY 帮助文本。这正是我想要放在程序名称字段下,但是使用我自己的字符串。
<property name="orpdl:programName">
<title>Program Name</title>
<type>d:text</type>
<helptext>What's this tag called?</helptext>
<mandatory>true</mandatory>
</property>
答案 0 :(得分:3)
Eeuh,这只是所有日期字段的控制字段中的div。
查看 alfresco / site-webscripts / org / alfresco / components / form / controls / date.ftl
您看到的消息在此div中:
<div class="format-info">
<span class="date-format">${msg("form.control.date-picker.display.date.format")}</span>
<#if showTime><span class="time-format<#if disabled>-disabled</#if>">${msg("form.control.date-picker.display.time.format")}</span></#if>
</div>
所以你想要一个字符串,只需根据 textfield.ftl 创建自己的自定义控制器,然后输入你喜欢的任何字符串。通过 control-params 传递它可能是最好的。