I have a grid with a column that should be checkcolumn, I use this code in the grid there are two rows, but the checkcolumn looks empty. When I click on the control column, console.log will correctly return the changed boolean value. But I do not see anything in this column.
xtype: 'checkcolumn', header: 'REDACTEUR', dataIndex: 'REDACTEUR', width: 75, editor: { xtype: 'checkbox' }, renderer : function(value) { console.log(value);
grid extjs4
A rozema
source share