Quote from
luishp on November 27, 2020, 8:04 am
@jason-roberts
Two options:
1) Controlling the order in which they appear in the "Objects" panel. To change it, right click on any of the InputText and select "Bring to front" or "Send to back". The one that appears higher (or in the background) will be the first to get focus.
2) Programmatically, using in the page-enter event something like this:
SetObjectAttribute "TextInput1" "tabindex" 1
Change the "1" to the order number you want to give that particular InputText.
For a future version I will try to add that attribute directly to the properties panel.
Regards.
@jason-roberts
Two options:
1) Controlling the order in which they appear in the "Objects" panel. To change it, right click on any of the InputText and select "Bring to front" or "Send to back". The one that appears higher (or in the background) will be the first to get focus.
2) Programmatically, using in the page-enter event something like this:
SetObjectAttribute "TextInput1" "tabindex" 1
Change the "1" to the order number you want to give that particular InputText.
For a future version I will try to add that attribute directly to the properties panel.
Regards.