Hello:
I just started to use Slick Grid in my application and I like it.
How can I make the entire column (with header) invisible in slick grid in runtime?
I am using following function for the cell:
grid.getCellNode(row, columnNo).style.display = "none";
but behavior is the same as
grid.getCellNode(row, columnNo).style. visibility = " visible";
(column is not collapsed - how to fix this?)
And I still can’t find a way how to hide header column in runtime.