SMART datagrid v.1 > Classes > DataColumn
If it is true, the user can click Header of this column to sort.
Defaults to true.
$('#sortable').click(function () {
var col = grid.focusedColumn();
if (!col.sortable()) {
col.sortable(true);
}
});