tabindex - Tab Index
Specifies the order in which a control gets focus when the user presses the Tab key.
Category
accessibilitySyntax
tabindex="n"
Where n
is
an integer and 1 means first in order.Usage
In Design mode, click the top tab under Properties and look for Tab order, or click All Properties and look for tabindex under accessibility.By default, the tab order inherits the browser's default order.
Examples
This Edit Box control is third in tab order.<xp:inputText id="inputText1" value="#{document1.subject}" tabindex="3"></xp:inputText>