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
Its very similar to clearTarget but also cleans up the ui in the same call. I don't want to break existing configurations so i opted to make a new clear function.
Should clearTarget just be updated to include this line?
this.$element.val('');
Also, could we remove the .focus from clearElement?
It makes it awkward for us to clear the box but then get focus forced to the combobox and away from whatever it was pointed at previously, just my opinion.
The text was updated successfully, but these errors were encountered:
In the source code, these two functions:
Don't actually clear the selected value from the combobox. I know that we could just do a $el.val('') but I wanted to make this fix a part of core.
I wanted to accomplish two things:
The fix is quite minor, here's my solution:
Its very similar to clearTarget but also cleans up the ui in the same call. I don't want to break existing configurations so i opted to make a new
clear
function.Should clearTarget just be updated to include this line?
Also, could we remove the .focus from clearElement?
It makes it awkward for us to clear the box but then get focus forced to the combobox and away from whatever it was pointed at previously, just my opinion.
The text was updated successfully, but these errors were encountered: