- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 40 of file Popups.java.
◆ addComponent() [1/2]
Popups org.turro.zkoss.dialog.Popups.addComponent |
( |
HtmlBasedComponent |
component | ) |
|
Definition at line 75 of file Popups.java.
76 components.add(component);
◆ addComponent() [2/2]
Popups org.turro.zkoss.dialog.Popups.addComponent |
( |
String |
uri, |
|
|
Map |
args |
|
) |
| |
Definition at line 80 of file Popups.java.
81 Include include =
new Include(
"/WEB-INF/_zul" + uri);
83 args.forEach((k, v) -> include.setDynamicProperty((String) k, v));
85 include.setDynamicProperty(
"popup", Framework.getCurrent().getGlobalPopup());
86 components.add(include);
◆ addSpace()
Popups org.turro.zkoss.dialog.Popups.addSpace |
( |
| ) |
|
Definition at line 70 of file Popups.java.
71 components.add(
new Space());
◆ height()
Popups org.turro.zkoss.dialog.Popups.height |
( |
String |
height | ) |
|
◆ instance()
static Popups org.turro.zkoss.dialog.Popups.instance |
( |
| ) |
|
|
static |
◆ onClose()
Popups org.turro.zkoss.dialog.Popups.onClose |
( |
Consumer< Popups > |
onClose | ) |
|
Definition at line 59 of file Popups.java.
61 EventListener el = (EventListener) (Event event) -> {
65 addEventListener(Events.ON_CLOSE, el);
◆ popup()
void org.turro.zkoss.dialog.Popups.popup |
( |
| ) |
|
Definition at line 90 of file Popups.java.
92 Popup
popup = Framework.getCurrent().getGlobalPopup();
93 popup.appendChild(
this);
94 popup.open(Framework.getCurrent());
◆ scrollable()
Popups org.turro.zkoss.dialog.Popups.scrollable |
( |
| ) |
|
Definition at line 54 of file Popups.java.
55 setStyle(
"overflow-y:auto");
◆ width()
Popups org.turro.zkoss.dialog.Popups.width |
( |
String |
width | ) |
|
The documentation for this class was generated from the following file: