Skip to content

Instantly share code, notes, and snippets.

@mitchellsimoens
Created November 25, 2011 20:27
Show Gist options
  • Save mitchellsimoens/1394360 to your computer and use it in GitHub Desktop.
Save mitchellsimoens/1394360 to your computer and use it in GitHub Desktop.
LoadMask to display when grid is rendered but store is not done loading.
Ext.override(Ext.LoadMask, {
onBeforeLoad: function() {
var me = this;
if (!me.disabled) {
me.loading = true;
}
me.callOverridden(arguments);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment