Reputation: 6204
I have problem with getSuggestions
plugin in UI dialog. Code:
input.textext({
plugins: 'tags autocomplete',
tags: {items: tagItems},
ext: {
core: {
serializeData: function (data) {
return data.join(',');
}
},
tags: {
onPreInvalidate: function (event) {
}
}
}
}).bind('getSuggestions',function (e, data) {
console.log('get');
}).bind('anyKeyUp',function (event) {
console.log('keyup');
}).bind('focusout', function (event) {
console.log('focus');
});
Other binds working fine. What can it be caused? This code working if is not in dialog UI.
Upvotes: 0
Views: 357
Reputation: 6204
I find issue:
https://github.com/alexgorbatchev/jquery-textext/issues/92
Works fine for me.
Upvotes: 0