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
The error consists in that when emptying the select and filling it with more data than the ** elementCount ** variable had, which contains the "number of elements that the select should have" but when filling it with new data that exceeds that index, if trying to select an option nothing happens.
To fix the error
refresh: function(mustClearSelections) { this.elementCount=0; //Solution
updateSelectionStates(this);
clearSelections(this);
refreshSelects(this);
},
The text was updated successfully, but these errors were encountered:
The error consists in that when emptying the select and filling it with more data than the ** elementCount ** variable had, which contains the "number of elements that the select should have" but when filling it with new data that exceeds that index, if trying to select an option nothing happens.
To fix the error
refresh: function(mustClearSelections) {
this.elementCount=0; //Solution
updateSelectionStates(this);
clearSelections(this);
refreshSelects(this);
},
The text was updated successfully, but these errors were encountered: