Documentation

showColumn

shows the column which was previously hidden by method 'hidecolumn'

void showColumn(id id);

Parameters

ididthe id of a column

See also

Example

dtable.hideColumn("col1");
....
dtable.showColumn("col1");

Back to top