|
static int | doModal (String file) throws InterruptedException |
|
static int | doModal (String file, Map arg) throws InterruptedException |
|
static int | doModal (String file, Component parent, Map arg) throws InterruptedException |
|
static int | doModal (ModalWindow win) throws InterruptedException |
|
static void | doModal (Window win) throws InterruptedException |
|
static void | doModal (String file, Command command) |
|
static void | doModal (String file, Map arg, Command command) throws InterruptedException |
|
static void | doModal (String file, Component parent, Map arg, Command command) |
|
static void | doModal (final Window win, final Command command) |
|
static ModalWindow | getModal (String file) |
|
static ModalWindow | getModal (String file, Map arg) |
|
static ModalWindow | getModal (String file, Component parent, Map arg) |
|
- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 35 of file Modal.java.
◆ doModal() [1/9]
static void org.turro.elephant.zkoss.Modal.doModal |
( |
final Window |
win, |
|
|
final Command |
command |
|
) |
| |
|
static |
Definition at line 93 of file Modal.java.
94 win.addEventListener(Events.ON_CLOSE,
new EventListener<Event>() {
96 public void onEvent(Event event) throws Exception {
98 Context ctx = new Context();
100 command.execute(ctx);
102 win.removeEventListener(Events.ON_CLOSE, this);
◆ doModal() [2/9]
static int org.turro.elephant.zkoss.Modal.doModal |
( |
ModalWindow |
win | ) |
throws InterruptedException |
|
static |
Definition at line 53 of file Modal.java.
54 if(win.getDesktop().getWebApp().getConfiguration().isEventThreadEnabled()) {
57 }
catch (Throwable ex) {
59 if (ex instanceof InterruptedException)
60 throw (InterruptedException)ex;
61 throw UiException.Aide.wrap(ex);
64 return win.getResult();
◆ doModal() [3/9]
static int org.turro.elephant.zkoss.Modal.doModal |
( |
String |
file | ) |
throws InterruptedException |
|
static |
Definition at line 38 of file Modal.java.
39 return doModal(file,
null, (Map)
null);
static int doModal(String file)
◆ doModal() [4/9]
static void org.turro.elephant.zkoss.Modal.doModal |
( |
String |
file, |
|
|
Command |
command |
|
) |
| |
|
static |
◆ doModal() [5/9]
static int org.turro.elephant.zkoss.Modal.doModal |
( |
String |
file, |
|
|
Component |
parent, |
|
|
Map |
arg |
|
) |
| throws InterruptedException |
|
static |
Definition at line 48 of file Modal.java.
static ModalWindow getModal(String file)
◆ doModal() [6/9]
static void org.turro.elephant.zkoss.Modal.doModal |
( |
String |
file, |
|
|
Component |
parent, |
|
|
Map |
arg, |
|
|
Command |
command |
|
) |
| |
|
static |
◆ doModal() [7/9]
static int org.turro.elephant.zkoss.Modal.doModal |
( |
String |
file, |
|
|
Map |
arg |
|
) |
| throws InterruptedException |
|
static |
◆ doModal() [8/9]
static void org.turro.elephant.zkoss.Modal.doModal |
( |
String |
file, |
|
|
Map |
arg, |
|
|
Command |
command |
|
) |
| throws InterruptedException |
|
static |
◆ doModal() [9/9]
static void org.turro.elephant.zkoss.Modal.doModal |
( |
Window |
win | ) |
throws InterruptedException |
|
static |
Definition at line 68 of file Modal.java.
69 if(win.getDesktop().getWebApp().getConfiguration().isEventThreadEnabled()) {
72 }
catch (Throwable ex) {
74 if (ex instanceof InterruptedException)
75 throw (InterruptedException)ex;
76 throw UiException.Aide.wrap(ex);
◆ getModal() [1/3]
static ModalWindow org.turro.elephant.zkoss.Modal.getModal |
( |
String |
file | ) |
|
|
static |
Definition at line 109 of file Modal.java.
110 return (ModalWindow) Executions.createComponents(file,
null,
null);
◆ getModal() [2/3]
static ModalWindow org.turro.elephant.zkoss.Modal.getModal |
( |
String |
file, |
|
|
Component |
parent, |
|
|
Map |
arg |
|
) |
| |
|
static |
Definition at line 117 of file Modal.java.
118 return (ModalWindow) Executions.createComponents(file, parent, arg);
◆ getModal() [3/3]
static ModalWindow org.turro.elephant.zkoss.Modal.getModal |
( |
String |
file, |
|
|
Map |
arg |
|
) |
| |
|
static |
Definition at line 113 of file Modal.java.
114 return (ModalWindow) Executions.createComponents(file,
null, arg);
The documentation for this class was generated from the following file: