I am using the ext3s grid-grid example to try to set the grid in the container window. The problem is resizing the container window; the grid will not automatically fit the new size. As far as I understand, it should work.
Here's a link to an example: http://www.extjs.com/deploy/dev/examples/grid/array-grid.html
I have done the following:
// Added to gridpanel config layout: 'fit', viewConfig: { forceFit: true } // Window container var gridWindow = new Ext.Window({ items: [ grid ] }); // Instead of grid.render, use gridWindow.show(); gridWindow.show();

extjs
imnotneo
source share