forms - Alfresco Custom Data List Type Text Field Help Text -
i've created new data list type in alfresco, struggling figure out tag called achieve description under field. consulted data dictionary, unable find it.
it may not exist, this screenshot makes me hopeful. can see, modified date field has dd/mm/yyyy text under it. want put under program name field, own string.
<property name="orpdl:programname"> <title>program name</title> <type>d:text</type> <helptext>what's tag called?</helptext> <mandatory>true</mandatory> </property>
eeuh that's div in control field date fields.
take @ alfresco/site-webscripts/org/alfresco/components/form/controls/date.ftl
the message see in 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> so want string, create own custom controller based on textfield.ftl , put whatever string like. best passing through control-params.
Comments
Post a Comment