-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Normal
-
Affects Version/s: 6.5.4
-
Component/s: Components
-
None
-
Environment:
Chrome, Firefox
-
None
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
-