This is one of those things that can be a little sick because they did too much to the browser (especially noticeable in IE).
I like to use a snooze combination to let the browser recover long enough to display things correctly.
var grid = new Ext.grid.GridPanel({ ..., listeners : { render : function(grid){ grid.body.mask('Loading...'); var store = grid.getStore(); store.load.defer(100, store); }, delay: 200 } });
A game with a delay / delay value should give you the desired results. The length of time that you will need to delay / defer depends on how complicated your grid is and how fast the browser is.
Also do not forget to remove the mask when your download to the repository is complete.
listeners: { load: function(){ yourGrid.body.unmask(); } }
NOTE. Just a few clarifications to Lloyd's answer - you do not need to set autoLoad to false because this is the default value (i.e.: do not set it at all), and it looks like your description that you would like to use the Stores boot method instead of rebooting.
Shea frederick
source share