-
30 Jan 2013 11:17 PM #1
Triggering a grids load mask?
Triggering a grids load mask?
Heya, community. I have a little question:
I'm using an AJAX-request which is not triggered by the grid or the grid's store. Is it possible to use a loading mask, by activating it (and deactivating afterwards) with a method or something? I was unable to find something within the documentation.
-
31 Jan 2013 12:16 AM #2
You can mask and unmask the grid manually by using Ext.Element's mask and unmask methods:
http://docs.sencha.com/ext-js/3-4/?m...nt#method-mask
So for example:
Code:Ext.getCmp('grid_id').getEl().mask()


Reply With Quote