Open Voileexperiments opened 3 years ago
I don't have an IOS device to test on. I'll try to fix this and then I'll ask you for a check if you don't mind @Voileexperiments
A quick workaround that handles the IME composition
$('<your-selector>').on('input', (e) => {
$('<your-selector>').autoComplete('show');
});
HI @sunarium thanks! I really need to fix this issue. Sorry for the delays guys.
No mentioned Events triggering.
$('.basicAutoSelect').on('autocomplete.freevalue',function(evt, item){ console.log(evt,item) })
console is empty .
I can easily reproduce this in the demo page by:
Or
As can be tested here, only
beforeinput
andinput
is triggered for both cases, andcompositionend
for the second case.Apparently
input
event listener is missing among the listeners. Why?input
event is supported by all modern browsers and adding it is perfectly backwards compatible.