如何在ExtJS3.4的gridpanel中添加复选框列

时间:2016-07-04 07:24:47

标签: extjs extjs3

想要在gridpanel中添加一个复选框列。

我试过这个。

var sm = Ext.create('Ext.selection.CheckboxModel'); 

并在网格中我正在配置它。 selModel: sm,

任何人都可以帮助我。

1 个答案:

答案 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' },


                      ]
})