DHX Version: dhtmlxSuite 2009 Rel.1 (DHTMLX 2.1) Professional edition build 90226/90316
DHX Grid Version: dhtmlxGrid v.2.1 Professional edition build 90316
Hi,
The setSizes is not working as expected even after writing following.
libGrid.setSizes();
libGrid.obj.border=1;
libGrid.obj.border=0;
I don’t wish to show scroll bars IF it is not needed o.w if needed then its fine.
Also I have written this.
libGrid.objBox.style.overflowX = “auto”;
libGrid.objBox.style.overflowY = “auto”;
To disable scrollbars you should not use
libGrid.obj.border=1;
libGrid.obj.border=0;
You can just enable auto width or auto height in grid:
mygrid.enableAutoWidth(true)
mygrid.enableAutoHeight(true)
Hi there,
Just one more thing.
Suppose I have written
libGrid.enableAutoHeight(true,“500”,true);
Its not even going till 500px.
Hi there,
Even after removing custom css for cell, I m getting this issue.
In v 1.6 it was working perfectly but in 2.1 it is not.
Hi there,
I found a way, call setSizes after some miliseconds. Use setTimeout for this.