How to shade elements in ExtJS , preferably with the message ' Loading ... '?
For example, you need to shade a window or panel while data is being loaded.
- What version of ExtJs? - Anton Mukhin
- The last at the moment - 4.1 - ProGer
|
1 answer
Try this:
var domElement = Ext.get( "elemId" ); domElement.mask( "Загрузка...", "yourCssCls" );
UPD1:
Or like this: http://docs.sencha.com/ext-js/4-1/#!/api/Ext.LoadMask
|