DHTMLX grid - How to completly disable scrollbars

Hi,

I would like remove scrollbars from my dhtmlx grid.



I use enableAutoWidth(true) and enableAutoHeight(true)

and i call setSizes() after each modification, but i still see the scrollbar sometimes.



I see them all the time in IE6 and in firefox i see them when i do a block selection to the last row or the last column.



How could i make sure the scrollbars don’t appear?

Thank you,

-Alim

Add next line to the grid’s init
grid.objBox.style.overflow=“hidden”;
It will fully remove visible scrollbars

Thank you,
It should probably read
  grid.objBox.style.overflow=“hidden”;

Otherwise it works.
-Alim

Yes, was a typo from my side, sorry for inconvenience