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
Issue: you could only use 'enter' when you wanted to go the the next 'input field' OR if you were clicking 'tab' the pop-up window of this widget was re-opening or closing. Therefore you couldn't go to the next input field with TAB. The code below solves this issue.
This so that the ‘tab’ key can be used and if the ‘focus’ is on true in the widget, this will not close & re-open the widget but just continues to the the next input field in Mendix
Hopefully this can help also other users. Thanks for you widget :)
The text was updated successfully, but these errors were encountered:
Issue: you could only use 'enter' when you wanted to go the the next 'input field' OR if you were clicking 'tab' the pop-up window of this widget was re-opening or closing. Therefore you couldn't go to the next input field with TAB. The code below solves this issue.
@file : AutoCompleteForMendix.js
@Version : 6.0.0
@author : Iain Lindsay
@Date : 2019-05-15
@copyright : AuraQ Limited 2020
@license : Apache V2
Line 306 - we added code to line 306
.on("select2:closing",function(e){
setTimeout(()=>self._$combo.select2('focus'),50);
});
This so that the ‘tab’ key can be used and if the ‘focus’ is on true in the widget, this will not close & re-open the widget but just continues to the the next input field in Mendix
Hopefully this can help also other users. Thanks for you widget :)
The text was updated successfully, but these errors were encountered: