how to add checkbox column to Extjs Grid

38,189

Have a look at the sample here. It uses a Plugin called CheckBoxColumn (you will have to View Source and find the JS file.

Some example usage from the Plugin's file...


var checkColumn = new Ext.grid.CheckColumn({
   header: 'Indoor?',
   dataIndex: 'indoor',
   id: 'check',
   width: 55
});

// add the column to the column model
var cm = new Ext.grid.ColumnModel([{
       header: 'Foo',
       ...
    },
    checkColumn
]);

// create the grid
var grid = new Ext.grid.EditorGridPanel({
    ...
    cm: cm,
    plugins: [checkColumn], // include plugin
    ...
});


Share:
38,189
Innova
Author by

Innova

im very straight forward person

Updated on October 11, 2020

Comments

  • Innova
    Innova over 3 years

    I have EXTjs grid. I want to know how to add the checkbox to the Extjs grid column.

    in my datatable I'll get the value for the column 'Status'. it may br either true/false. so based on that it should show the checkbox column checked / unchecked.