Piotr Olaszewski
Piotr Olaszewski

Reputation: 6204

getSuggestions textext in jQuery dialog

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

Answers (1)

Piotr Olaszewski
Piotr Olaszewski

Reputation: 6204

I find issue:

https://github.com/alexgorbatchev/jquery-textext/issues/92

Works fine for me.

Upvotes: 0

Related Questions