Insert Column change grid width in IE 11

Hello,

I am trying to insert columns dynamically to grid. After insert column, grid width changed. It only happened on IE11. IE Edge,Chrome and Firefox working fine.



Unfortunately the issue is not clear.
If you add the column with the 100 px in width to your grid so the width of your grid will enlarge its width in 100 px. This is the expected behavior.
Could you please, clarify the problem with the complete demo. Here you can find a tutorial about creating a complete demo:
docs.dhtmlx.com/tutorials__auxi … pport.html

Dear Sematik,

If that’s the case, is there any way to change “Container” width and height after grid load?

Thank you.

You may try to use the following solution:
myGrid.entBox.style.width=“1000px”;
Also you may try to use the enableAutoWidth() method:
docs.dhtmlx.com/api__dhtmlxgrid … width.html
it will extend the width of your grid container automatically to avoid the scrollbars.