Revision history [back]

click to hide/show revision 1
initial version

answered 2010-11-04 04:15:46 +0800

terrytornado gravatar image terrytornado flag of Germany

http://www.oxitec.de/

Instead:

      Window oWNuevaVentana = (Window) Executions.createComponents("NuevaVentana.zul", null,null);
    try {
        oWNuevaVentana.doModal();
    } catch (Exception e) {
    }

write:

    try {
               Window oWNuevaVentana = (Window) Executions.createComponents("NuevaVentana.zul", null,null);
        oWNuevaVentana.doModal();
    } catch (Exception e) {
    }
  1. NuevaVentana.zul ??????? Which of the two window components inside should be showed modal?????

  2. Separate the windows in single classes and you would have not this problems .

best Stephan

Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More