this.sm = new Ext.grid.CheckboxSelectionModel({ singleSelect : false, checkOnly : true }); this.cm = new Ext.grid.ColumnModel([ this.sm, { header : ‘任务号‘, align : ‘left‘, menuDisabled : true, dataIndex : ‘task_no‘, width : 100 }, {
singleSelect 表示是否可以单选, checkOnly表示是否只能点击多选框才能实现选择,因为false的话点击内容也可以实现选择。
时间: 2024-11-07 11:25:19