i’m using ExtJS. I want to mask my window before highload script will execute. When I use
App.mask();
some.high.load.script();
App.unmask();
mask doesn’t appears. After mask function start highload and then It can’t change html until it end. And in that case I need to use defer (setTimeout analog). Is there any solution without defer methods?
Function defering is only way to solve that problem.