SMART datagrid v.1 > Classes > GridBase
It will be fired when click the check box being displayed in column header cell.
GridColumn.checked property is the checked state value of this check box.
grid.onColumnHeaderClicked = function (grid, column, checked) {
column.styles().setBackground(checked ? '#ffff00' : '#00ff00');
}