-
Bug
-
Resolution: Fixed
-
Normal
-
6.5.4
-
None
-
Chrome, Firefox
When resizing using splitter in borderlayout visible popup windows do not close (bandbox popup, combobox popup). I created the following script to bypass this error
zk.afterMount(function () { jq("div[class$='-split']").mousedown(function () { jq(".z-bandbox:visible, .z-combobox:visible").each(function (index) { widget = zk.Widget.$($(this)); if (widget.isOpen()) { widget.close(); } }); }); });
- relates to
-
ZK-3165 draggable treeitems fire onSelect too early in IE
- Closed