easyui editor combobox multiple

Posted 芜明-追星

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui editor combobox multiple相关的知识,希望对你有一定的参考价值。

$.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的主要内容,如果未能解决你的问题,请参考以下文章

easyui 的combobox的onchange方法有吗?

劳驾问下,easyui datagrid combobox 值改变事件怎么写的?

jquery easyui 里的datagrid editor 如何绑定事件?

EasyUI之DataGrid属性

easyUI的combobox下拉框受窗口大小局限不能完整显示,如何实现像select标签那样下拉

LigerUI combobox的设置初始值不显示,怎么解决?