Consultor Eletrônico



Kbase P117671: How to control the tab in html form fields?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   8/1/2006
Status: Unverified

GOAL:

How to control the tab in html form fields?

FACT(s) (Environment):

WebSpeed 3.x
OpenEdge 10.x

FIX:

Use TABINDEX syntax to number the tab you you like in the html form fields.

Example:

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>