Skip to content

showColumn

shows the column that was previously hidden by method ‘hideColumn’

function showColumn(
// mandatory, the column ID
id: id,
// optional, an object with showing options
options?: WebixShowColumnConfig,
// optional, if true, the datagrid is not refreshed
silent?: boolean
): void
dgrid.hideColumn("col1", {span: true});
// show column and its span
dgrid.showColumn("col1", {span: true});

also check the next samples:

Articles

API