0

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.

4

1 に答える 1

0

私は問題を見つけました:

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

私にとってはうまくいきます。

于 2013-09-23T08:33:00.680 に答える