SMART datagrid v.1 > Classes > CheckBar
If it is true, only when Checkable of Grid Row is true, the user can click CheckBar cell with mouse to change Checked state of Grid Row.
And, when click CheckAll cell on the top of CheckBar, if this value is true, the state of rows only which Checkable is true will be changed. EditOptions.checkable should also be true. Checkable state of each grid row can be set by checkableCallback or checkableExpression.
Defaults to true.
$('#checkable').click(function (ev) {
grid.checkBar().setCheckableOnly(ev.target.checked);
});