Package org.zkoss.zul

Examples of org.zkoss.zul.Window.doModal()


    t.setMultiline(true);
    t.setRows(20);
    t.setParent(w);
    t.setValue(sb.toString());
    t.focus();
    w.doModal();
  }
  public void importFileName() throws SuspendNotAllowedException, InterruptedException {
    final Window w = new Window();
    w.setTitle("Import File Name");
    w.setWidth("300px");
View Full Code Here


      public void onEvent(Event e) throws Exception {
        w.detach();
      }
    });
    t.focus();
    w.doModal();
  }
  public void updateModelByTag() {
    fileModel.clear();
    final String r = getDesktop().getWebApp().getRealPath("/");
    final File test2 = new File(r, PATH);
View Full Code Here

        args.put("operation", "addBuildingDoc");
        args.put("buildingController", this);

        Window win = (Window) Executions.createComponents("standingData/buildingDoc.zul", this, args);
        try {
            win.doModal();
        } catch (InterruptedException ie) {
        }
    }

    public void openForUpdate() {
View Full Code Here

        args.put("buildingDocForm", sub);

        Window win = (Window) Executions.createComponents("standingData/buildingDoc.zul", this, args);

        try {
            win.doModal();
        } catch (InterruptedException ie) {
        }

    }
View Full Code Here

        args.put("user", obj);
        args.put("masterController", this);

        Window win = (Window) Executions.createComponents("pri/duty.zul", this, args);
        try {
            win.doModal();
        } catch (InterruptedException ie) {
        }
    }

    public void openForUpdate() {
View Full Code Here

        args.put("dutyForm", sub);

        Window win = (Window) Executions.createComponents("pri/duty.zul", this, args);

        try {
            win.doModal();
        } catch (InterruptedException ie) {
        }

    }
View Full Code Here

    final String height = "300px";
    final String uri = "/WEB-INF/pages/welcome.zul";
    final Window window = (Window) Executions.createComponents(uri, (Component) getController(), null);
    window.setWidth(width);
    window.setHeight(height);
    window.doModal();
  }

  public void onClick$btn_CompileReport(Event event) {

    getReportService().compileReport("/de/forsthaus/webui/reports/order/Test_Report_subreportAuftrag.jrxml");
View Full Code Here

      }
    }
    parameters.put("ids", ids);
    child.setClosable(true);
    try {
      child.doModal();
    } catch (SuspendNotAllowedException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    } catch (InterruptedException e) {
      // TODO Auto-generated catch block
View Full Code Here

        }
      }
    }
    map.put("ids", ids);
    child.setClosable(true);
    child.doModal();
    refresh();
  }
 
 
  private void refresh(){
View Full Code Here

        }
      }
    }
    map.put("ids", ids);
    child.setClosable(true);
    child.doModal();
    refresh();
  }
 
  private void feedGrid() {
    Grid companiesGrid=(Grid)getFellow("uomGrid");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.