I have an html file that has forms within. Within each form are "input"
When the form loads:
1. The focus is not on the first text entry (First Name) - how do I set the focus and force the keyboard to appear without having the user touch the entry box?
2. When the user has filled in the first name, if he touches the DONE/NEXT button, nothing happens - how do I cause the tab to advance to the next field?
Thanks in advance,
Rusty
B4X:
form method="post" id="TSForm"
....
<div id="q3" class="q required">
<label class="question top_question" for="RESULT_TextField-3">First Name <b class="icon_required" style="color:#FF0000">*</b></label>
<input type="text" name="RESULT_TextField-3" class="text_field" id="RESULT_TextField-3" size="25" value="" />
</div>
<div id="q4" class="q required">
<label class="question top_question" for="RESULT_TextField-4">Last Name <b class="icon_required" style="color:#FF0000">*</b></label>
<input type="text" name="RESULT_TextField-4" class="text_field" id="RESULT_TextField-4" size="25" value="" />
</div>
...
</form>
When the form loads:
1. The focus is not on the first text entry (First Name) - how do I set the focus and force the keyboard to appear without having the user touch the entry box?
2. When the user has filled in the first name, if he touches the DONE/NEXT button, nothing happens - how do I cause the tab to advance to the next field?
Thanks in advance,
Rusty