-
Bug
-
Resolution: Fixed
-
Normal
-
8.5.1.2
-
Security Level: Jimmy
-
None
-
fast network connection, e.g. localhost
-
ZK 8.6.0 S1, ZK 8.6.0 S2, ZK 9.0.0 S1
-
None
Steps to Reproduce
<zk> <window id="outer" onCreate='Clients.showBusy(outer, "Outer Busy");' onClientInfo="Clients.clearBusy(outer)" width="500px" height="500px"> Content </window> </zk>
Current Result
busy message remains on screen
Expected Result
busy message gets cleared
Debug Info
clearBusy gets called before showBusy if the onClientInfo event responds very quickly (e.g. after 10ms on localhost)
Root Cause
there is a 25ms interval delaying the commands of the initial page response
Workaround
call showBusy earlier during widget creation
<window id="outer" w:onBind="zAu.cmd0.showBusy(this, 'Outer Busy')" onClientInfo="Clients.clearBusy(outer)" width="500px" height="500px"> Content </window>
- relates to
-
ZK-4568 alert during onClientInfo cause disabled request and UI stuck
-
- Closed
-