-
Bug
-
Resolution: Fixed
-
Major
-
6.0.2, 6.5.0
-
Security Level: Jimmy
-
None
As code below, the busy mask will only cover the panel but the textbox in the grid under the panel still editable.
<zk> <hbox> <button id="btn1" label="Show Busy" onClick='Clients.showBusy(panel, "Busy")'/> <button id="btn2" label="Clear busy" onClick="Clients.clearBusy(panel)"/> </hbox> <div id="div" height="75%" > <panel id="panel" height="100%" title="test"> <panelchildren> <borderlayout> <center> <div id="divTwo"> <grid id="grid" fixedLayout="true" width="75%"> <rows> <row> <textbox /> </row> </rows> </grid> </div> </center> </borderlayout> </panelchildren> </panel> </div> </zk>