SMART datagrid v.1 > Classes > GridBase
CheckBar object which manages properties of the area in which displays check cells of displaying check state of each Row.
$('#checkbar').click(function () {
// Specify the property in grid level.
grid.setCheckBar({
visible: $('#checkbar').is(':checked')
});
// Can also set in Check bar level.
grid.checkBar().setVisible($('#checkbar').is(':checked'));
});