Skip to content

onBeforeColumnShow

fires before a column is shown in a datagrid

function onBeforeColumnShow(
// the column ID
id: string
): void
datagrid1.attachEvent("onBeforeColumnShow", function(id){
// some code
});

The event can be used to prevent a column from being shown. If a handler returns false, the column will not be shown.