mootools-meio-autocomplete
mootools-meio-autocomplete copied to clipboard
A complete mootools Autocomplete plugin
Fix bug: when a request is sent, and the request instance still waits on completion for the previous request, the request is not sent, so the wrong results are displayed....
See commits for explanation Known 'bugs': - When leaving the input-field before delay expires, auto-select will not select a thing since no request has been send (the possible 'valueField' will...
If you want to submit the form with onSelect() and need a synced value field, you have the problem that the value field isn't updated already. It's a problem of...
If I activate, and don't select an option, it still clears the default value. The field needs a value, so a user could deselect the value and leave it empty.
When using the script for languages other than English, like Arabic, I get different e.key values in 'delayedKeyrepeat' and 'keyup' events, thus weird behavior in hiding and showing the list....
example search for "xxxY": I type "xxx" and get some suggestions (list opened) then I press "shift" (list closes immediatly) and hold shift to combine shift-key with "y" to write...
If you use the autofocus attribute on an input field, the focus event isn't send, therefore the focus intialisation failed. One effect of that was a wrong position of the...
When I assign Meio.Autocomplete.Select() to an input field I can't type the characters '(' and '&' in that field. It is still possible to paste both characters in the field,...
Hello, I'm experiencing the same issue as per https://github.com/fabiomcosta/mootools-meio-autocomplete/pull/19 If I keep this.shouldNotBlur = true in IE7,8,9 , Chrome , Safari, I need always to double click to move to...
In description: `"if the syncAtInit option is set to true, it will synchonize the value of the autocomplete with the corresponding data from the valueField's value."` In options: `syncName: 'id',...