Visual Neo Web - Tab Order - Forum

Forum Navigation
You need to log in to create posts and topics.

Visual Neo Web - Tab Order

Hi. With the windows development version of Visual Neo you can easily re-order the TAB order of input boxes.

How is this done is Visual Neo Web?

 

@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.

Thank you