How do I reprompt all fields except the first?
Posted: Mon Aug 31, 2009 9:34 am
Hi,
I've a form wich are 5 fields.
When the user input the star pound, I must reset and reprompt the 4 fields except the first. I must to save a value of the first field (phone number).
I try this code but it doesn't work:
Can you help me?
Thanks by advance.
I've a form wich are 5 fields.
When the user input the star pound, I must reset and reprompt the 4 fields except the first. I must to save a value of the first field (phone number).
I try this code but it doesn't work:
Code: Select all
<form id="main">
<field name="phone">
</field>
<field name="field1">
</field>
<field name="field2">
</field>
<field name="field3">
<filled>
<if cond="field3='*'">
<assign name="field2" expr="undefined" />
<assign name="field3" expr="undefined" />
<reprompt />
</if>
</filled>
</field>
</form>
Thanks by advance.