This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Description
There is any way to hide or show columns after the table has been rendered?
I know it is possible using fnSetColumnVis from oInstance, but it will be perfect if I could use this feature from DTColumnBuilder, ex:
//columns definition
$scope.dtColumns = [
DTColumnBuilder.newColumn('...')...
...
];
//so this command
$scope.dtColumns[0].setVisible(false);
$scope.dtColumns[3].setVisible(true);
Tks