/** * @class Ext.ux.CheckColumn * @extends Ext.grid.column.Column *
A Header subclass which renders a checkbox in each column cell which toggles the truthiness of the associated data field on click.
*Note. As of ExtJS 3.3 this no longer has to be configured as a plugin of the GridPanel.
*Example usage:
*
// create the grid
var grid = Ext.create('Ext.grid.Panel', {
    ...
    columns: [{
           text: 'Foo',
           ...
        },{
           xtype: 'checkcolumn',
           text: 'Indoor?',
           dataIndex: 'indoor',
           width: 55
        }
    ]
    ...
});
 *