Uploaded image for project: 'ZK'
  1. ZK
  2. ZK-2003

When resizing using splitter in borderlayout visible popup windows do not close (bandbox popup, combobox popup)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Normal Normal
    • 7.0.1
    • 6.5.4
    • Components
    • 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();
      			}
      		});
      	});
      });
      

            danchen0720 danchen0720
            dinix dinix
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: