Open
Reported for: Toolset Forms 2.3.6
When you have Select2 inputs in a Toolset form (e.g. parent post selectors in a one-to-many relationship, where the form applies to the child post), and use the TAB key to move through the form on the front-end, then selecting an option in the Select2 inputs will provoke the next TAB click to reset the current location.
This means after selecting the option in Select2, pressing TAB will not lead to the next input but back to the top of the page.
This is a known bug in Select2 4.0.3 version that Toolset uses.
Until Toolset updates its version to 4.0.7 (which solves this bug) you can add the following snippet to your form addressing the Select2 Items:
jQuery('select').on(
'toolset_select2:select',(
function(){
jQuery(this).focus();
}
)
);