This topic is locked
[SOLVED]

 Change tab order of fields?

3/3/2016 3:49:19 PM
ASPRunner.NET General questions
Pete K author

Is it possible to change the tab order of fields? I have a page on which I switched to Freeform Mode and moved the fields around. Now they don't flow in a logical order when tabbing through them. Is there a way to directly access the tabindex property (or other properties for that matter) of the input html element on a per-page basis (or at all)?

Sergey Kornilov admin 3/4/2016

We do not currently the option to change the tab order explicitly. We are working on adding one.
If this is a must have functionality you can use Javascript OnLoad event for this purpose. Here is the sample code:

$("input[id^=value_status]").attr('tabindex', 1);

$("input[id^=value_description]").attr('tabindex', 2);

$("input[id^=value_files]").attr('tabindex', 3);
Pete K author 3/4/2016

Tanks, Sergey. Obviously not an ideal solution but it's good to know a work-around until this feature is implemented.