想要在gridpanel中添加一个复选框列。
我试过这个。
var sm = Ext.create('Ext.selection.CheckboxModel');
并在网格中我正在配置它。 selModel: sm,
任何人都可以帮助我。
答案 0 :(得分:1)
Please follow this code
I am sure this code is working fine.
var sm = new Ext.grid.CheckboxSelectionModel({
width: 25,
singleSelect: true,
header: ''
});
xtype: 'grid',
sm: sm,
store: store,
trackMouseOver: true,
cm: new Ext.grid.ColumnModel({
defaultSortable: true,
columns: [
sm,
{ dataIndex: 'record', header: 'Record' },
]
})