jQuery对话框中的getSuggestions textext

时间:2013-09-23 07:07:12

标签: jquery jquery-textext

我在UI对话框中遇到了getSuggestions插件的问题。代码:

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');
    });

其他绑定工作正常。它能造成什么?此代码工作,如果不在对话框UI中。

1 个答案:

答案 0 :(得分:0)

我发现问题:

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

对我来说很好。