easyui 的datagrid表格中怎样实现多选的下拉列表

2024-12-28 16:47:11
推荐回答(2个)
回答1:

大体一个例子
{ field: 'name', title: '企业名称', width: '70',align: 'center',
editor:{
type: 'combobox',
options: {
multiple:true,
valueField: 'entCode',
textField: 'entName',
url: '后台取数的ajax路径'
}
}
}
这样 当行开启编辑状态时 企业名称这个单元格就会显示combobox 并且可以多选

回答2:

大体一个例子 
{ field: 'name', title: '企业名称', width: '70',align: 'center', 
   editor:{
        type: 'combobox',
            options: {
                multiple:true,
                valueField: 'entCode',
                textField: 'entName',
                url: '后台取数的ajax路径'
            }
       } 
 }

 这样 当行开启编辑状态时  企业名称这个单元格就会显示combobox 并且可以多选