SMART datagrid v.1 > Classes > CheckCellRenderer
If editable is true and this property is true, even if click the cell which is not a focused cell, it will still change the value by changing into edit state immediately. If the value is false, you should change the cell which will be edited as Focused Cell by clicking the mouse.
Defaults to false.
grid.setColumns([{
name: "Shipping",
fieldName: "Shipping",
renderer: {
type: "check",
editable: true,
editOnClick: true,
spaceKey: true
}
},
...
]);