onBeforeColumnShow
fires before a column is shown in a datagrid
function onBeforeColumnShow( // the column ID id: string): void
Example
Section titled “Example”datagrid1.attachEvent("onBeforeColumnShow", function(id){ // some code});
Details
Section titled “Details”The event can be used to prevent a column from being shown. If a handler returns false, the column will not be shown.