This topic is locked

search when hitting enter?

1/18/2007 1:50:58 PM
ASPRunnerPro General questions
S
SteveL author

i have both asprunner 4.0 and asprunner 4.1 I noticed in 4.0 when I click the enter button the list page it would perform a search. This feature seems to be missing in asprunner 4.1. How do I add it back in manually?
Thanks
also is there anyway I can change the tab order on my pages?

and how do I set the mouse focus to automatically go into the search box when the page loads? Like google and yahoo where it defaults to the search box.

let me know
thanks again

Sergey Kornilov admin 1/18/2007

Search by hitting Enter button will be fixed in couple of days. We'll have a new update when Export feature is finished.
To change tab order you can use TABINDEX property:

<FORM>

Field 1 (first tab selection):

<INPUT TYPE="TEXT" NAME="field1" TABINDEX=1><BR>

Field 2 (third tab selection):

<INPUT TYPE="TEXT" NAME="field2" TABINDEX=3><BR>

Field 3 (second tab selection):

<INPUT TYPE="TEXT" NAME="field3" TABINDEX=2><BR>

</FORM>