![]() |
Admin 6/5/2015 |
Tab order (unless specified explicitly) is decided by the web browser and is normally goes from left to right, the way people read in left-to-right languages. |
D
|
dodgebros author 6/5/2015 |
Tab order (unless specified explicitly) is decided by the web browser and is normally goes from left to right, the way people read in left-to-right languages. What you can do is to add a Javascript OnLoad event and in that event change the tab order the way you like it. See code samples at http://stackoverflow.com/questions/3772438/set-the-tab-index-dynamically-in-javascript
|
![]() |
Admin 6/6/2015 |
Use Chrome or Firefox Developer Tools to figure out the ID of each field in runtime. |
D
|
dodgebros author 6/6/2015 |
Use Chrome or Firefox Developer Tools to figure out the ID of each field in runtime. For instance, on this screenshot you can see that id of Last Name field is value_LastName_1
|
D
|
dodgebros author 6/8/2015 |
I used the Inspector tool in Firefox and feel pretty sure I got the correct id's this time and it still isn't working. Don't forget this table has four columns with label, field, label, field for each row. I want the user to be able to tab their way down the first column of fields then tab over and go down the second column of fields. Below is the Javascript code I placed in the "Javascript OnLoad Event". TD
|