Hi
I want to disable the scrollbars in the dhtmlxgrid. Can you help me out and tell me how to do it?
Regards
dan
Basically you can update the dhtmlxGrid.css , replace overflow:auto with overflow:hidden; but in result you will get part of content hidden beyond the borders.
If you want to have grid which auto-size itself to prevent scroll, you can use
grid.setInitWdths(“100,100,100,*”); //using * as size will cause column to autosize to prevent horizontal scroll
…
grid.enableAutoHeight(true); // this will cause vertical auto-size