Columns of header line that set setColumnHidden() with true should be invisible, but the header column is shown on IE.
- Chrome (and others): …
- IE(11): …
[code]
Sample [/code]

Columns of header line that set setColumnHidden() with true should be invisible, but the header column is shown on IE.
[code]
Sample [/code]Pleas,e try to hide your columns after the init of the grid:
myGrid.init();
myGrid.setColumnHidden(1, true);
myGrid.setColumnHidden(2, true);
Thank you for your reply.
It works fine for my simplified code, but it can’t resolve my actual code’s problem…
I’ll try another way.
Could you please, provide with a sample of your actual code.