Hi All,
I am facing an issue with using replicants in TS 6.5 formsPublisher UI.
The issue is when I expand the following replicant item and try to save the DCT without entering any values in the replicant field , it allows me to do so even though I have marked the textbox items in the DCT as "required=t".
Any thoughts on this?
I have following code in my datacapture.cfg file.
<item name="Contact Details">
<replicant min="0" max="10" hide-name="f" default="0">
<item name="NME_CONTACT_LAST_NAME">
<label>Contact Last/Family Name</label>
<description>Last/Family name of a consultant/practice head whom users should contact for more information about the document's content. Contact name(s) may or may not appear on the site.May be replicated if more than one Contact.</description>
<text required="t" size="20" maxlength="50"/>
</item>
<item name="NME_CONTACT_FIRST_NAME">
<label>Contact First/Given Name</label>
<description>First/Given name (and middle name or initial) of a consultant/ practice head whom users should contact for more information about the document's content. Contact name(s) may or may not appear on the site.</description>
<text required="t" size="20" maxlength="50"/>
</item>
<item name="NME_CONTACT_EMAIL">
<label>Contact E-Mail</label>
<description>E-mail address of a consultant/practice head whom users should contact for more information about the document's content. Contact name(s) may or may not appear on the site.</description>
<text required="t" size="20" maxlength="50" validation-regex="^[a-zA-Z-0-9_\.\']+
@[a-zA-Z-0-9_\.]+\.([a-zA-Z]+)$"/>
</item>
</replicant>
</item>
Thx in advance
ML