I have used this plug-in successfully, but while resizing the window height of the grid is reducing. Is there any problem with my code?
Code:
grid = new Ext.ux.AutoGridPanel({
//title:'Auto loading columnmodel',
renderTo: 'sampleGrid',
height:500,
loadMask: true,
store: store,
bbar: pagingBar,
plugins: [new Ext.ux.plugins.FitToParent('sampleGrid')],
footer: false,
shadow : true,
frame : true,
loadMask: true,
monitorResize:true
});
// render grid
grid.render();
// load + metadata
grid.store.load({params: {meta: true, start:0, limit:100}});
div tag is:
<div id="sampleGrid style="height:100%;width:100%;overflow:hidden"></div>
In IE 6 when I open the page the grid is reducing gradually and after that it not showing the grid data.
Thanks,
Suresh