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
When selecting a value in the JQuery UI version >= 1.9.0 the event onblur already is triggered synchronously. So call "blur()" again cause the change event trigger twice (the second trigger cause js error in wiquery-autocomplete.js).
I believe that to remove the problem it's need to delete the direct to onblur in line 137 in InnerAutocomplete subclass.
for fix the problem without changeing wiquery source code (or js sorucecode) i find the way to extend AutocompleteComponent and implement renderHead() for make the right call to autocomplete
When selecting a value in the JQuery UI version >= 1.9.0 the event onblur already is triggered synchronously. So call "blur()" again cause the change event trigger twice (the second trigger cause js error in wiquery-autocomplete.js).
I believe that to remove the problem it's need to delete the direct to onblur in line 137 in InnerAutocomplete subclass.
super.setSelectEvent(JsScopeUiEvent.quickScope(js.append("$(event.target).blur();")
.toString()));
The change in JQuery UI change event behavior is documented in http://jqueryui.com/upgrade-guide/1.9/#autocomplete
Thanks
The text was updated successfully, but these errors were encountered: