码迷,mamicode.com
首页 > 其他好文 > 详细

easyui editor combobox multiple

时间:2014-11-26 13:44:14      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   ar   color   sp   on   div   

$.extend($.fn.datagrid.defaults.editors,{
    combobox: {
        init: function(container, options){
            var combo = $(‘<input type="text">‘).appendTo(container);
            combo.combobox(options || {});
            return combo;
        },
        destroy: function(target){
            $(target).combobox(‘destroy‘);
        },
        getValue: function(target){
            var opts = $(target).combobox(‘options‘);
            if (opts.multiple){
                return $(target).combobox(‘getValues‘).join(opts.separator);
            } else {
                return $(target).combobox(‘getValue‘);
            }
        },
        setValue: function(target, value){
            var opts = $(target).combobox(‘options‘);
            if (opts.multiple){
                if (value == ‘‘){
                    $(target).combobox(‘clear‘);
                } else {
                    $(target).combobox(‘setValues‘, value.split(opts.separator));
                }
            } else {
                $(target).combobox(‘setValue‘, value);
            }
        },
        resize: function(target, width){
            $(target).combobox(‘resize‘, width)
        }
    }
});

 

easyui editor combobox multiple

标签:des   style   blog   io   ar   color   sp   on   div   

原文地址:http://www.cnblogs.com/exmyth/p/4122850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!