The bottom horizontal scroll bar of the grid is behind the footer and is invisible.
When I resize a column, the scrollbar appears just above the footer and below the last row and is now visible.
How do I get the scroll bar to appear correctly without having to manually resize a column?
Thanks in advance.
CODE:
In which browser issue occurs for you? ( the same code works correctly in both IE and FF )
>>How do I get the scroll bar to appear correctly without having to manually resize a column?
Please try to add next line
mygrid.loadXML("/imports/xml",function(){
window.setTimeout(function(){
mygrid.setSizes();
},1);
});
It will be equal to the resize after data loading.
The problem occurs with FireFox on a Mac:
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.5) Gecko/2008120121 Firefox/3.0.5
Hopefully this will help you find the bug.
And the code fix you sent works. That work around code makes the scroll bar visible without having to manually resize any columns.
Thanks,
-Sterling