You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the onFocus function of selectize.js the blur function is called if the selectize control isDisabled variabled is true. This becomes a problem when you place a selectized element in a form. When you tab to a disabled selectize element the blur is called and moves the users focus to the document start, taking them out of the form they were filling in. This action prevents the user from being able to tab to the next element in the form.
In the
onFocusfunction of selectize.js theblurfunction is called if the selectize controlisDisabledvariabled istrue. This becomes a problem when you place a selectized element in a form. When you tab to a disabled selectize element the blur is called and moves the users focus to the document start, taking them out of the form they were filling in. This action prevents the user from being able to tab to the next element in the form.I've made a plugin to circumvent this behavior but I thought it might be unintended as it breaks normal the normal flow of forms.