I've a problem with a subdialog.
I've this code:
Code: Select all
<field name="phonenumber" type="digits?minlength=6;maxlength=10">
<property name="inputmodes" value="dtmf" />
<nomatch>
<audio src="media/hello1.wav" />
</nomatch>
...
</noinput>
</field>
<subdialog name="checkresults" src="check_number.aspx" namelist="phonenumber" />
<filled mode="all" namelist="checkresults">
<if cond="checkresults.succeed == 'true'">
<audio src="media/hello2.wav" />
<else />
<audio src="media/hello3.wav" /> </if>
</filled>
But, when I a no match input, that does'nt works because the /field is above the filled markup.
Can you help me?
How can I include the subdialog to works when a phonenumber is correct and not?
Thanks by advance.