How not to wait for timeout without pressing #
Posted: Wed May 11, 2011 3:58 pm
Hi,
I have an application that expection 5 digits from user. It looks like this exampe:
The problem that I have set:
So user forced to wait 6 seconds after entering 5 digits or press #.
Please, advice? is it possible to set-up system not to wait 6 seconds when 5 digits were set and # was _not_ pressed?
Ivan
I have an application that expection 5 digits from user. It looks like this exampe:
Code: Select all
<field name="some_var" type="digits">
<filled>
<if cond="pin.length == 5">
//do smth
<else/>
//do smth else
</if>
</filled>
</field>
Code: Select all
<property name="interdigittimeout" value="6s"/>
Please, advice? is it possible to set-up system not to wait 6 seconds when 5 digits were set and # was _not_ pressed?
Ivan