Show and hide download status in ExtJS

I found some documentation for attaching a boot mask to any ExtJS element, but I need it differently. I want to explicitly write instructions on the show somewhere and hide it elsewhere. Nothing of this kind has been found at the moment ...

Thanks in advance for any idea.

+4
source share
1 answer

try the following:

function loadMask(el,flag,msg){ var Mask = new Ext.LoadMask(Ext.get(el), {msg:msg}); if(flag) Mask.show(); else Mask.hide(); } 

see this: upload mask

+5
source

All Articles