fires before a column is hidden in a datatable
id | string | the column ID |
$$("datatable1").attachEvent("onBeforeColumnHide", function(id){
// some code
});
The event can be used to prevent the column from being hidden. If a handler returns false, the column will not be hidden.