Categories | Question details Back To List | ||
dhtmlxgrid scrollbar problem Hi I want to disable the scrollbars in the dhtmlxgrid. Can you help me out and tell me how to do it? Regards dan Answer posted on Jul 04, 2007 13:19 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 Answer posted by Nadine (Support) on Dec 06, 2014 12:20 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking onchange checkbox and javascript editable. |