$('#cc').combobox({
url:'combobox_data1.json',
method:'get',
valueField:'id',
textField:'text',
panelHeight:'auto',
multiple:true,
formatter: function (row) {
var opts = $(this).combobox('options');
return '<input type="checkbox" class="combobox-checkbox">' + row[opts.textField]
},
onLoadSuccess: function () {
var opts = $(this).combobox('options');
var target = this;
var values = $(target).combobox('getValues');
$.map(values, function (value) {
var el = opts.finder.getEl(target, value);
el.find('input.combobox-checkbox')._propAttr('checked', true);
})
},
onSelect: function (row) {
//console.log(row);
var opts = $(this).combobox('options');
var el = opts.finder.getEl(this, row[opts.valueField]);
el.find('input.combobox-checkbox')._propAttr('checked', true);
},
onUnselect: function (row) {
var opts = $(this).combobox('options');
var el = opts.finder.getEl(this, row[opts.valueField]);
el.find('input.combobox-checkbox')._propAttr('checked', false);
}
});
相关文章
- 03-06easyui datagrid动态修改editor时动态绑定combobox的数据
- 03-06EasyUI combobox 下拉高度自适应
- 03-06easyui带file上传控件表达提交
- 03-06easyui combobox 取值
- 03-06Easyui的combobox组件无法选择内容
- 03-06easyui combobox 值怎样获取
- 03-06EasyUI Combobox 设置默认值
- 03-06学习日记5、easyui datetimebox 和combobox设置默认值
- 03-06Easyui combobox onChange事件
- 03-06MVC easyui-switchbutton 和 checkbox 、radio 使用和赋值 JQ select 取值