- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 42 of file Windows.java.
◆ adaptHeight()
Windows org.turro.zkoss.dialog.Windows.adaptHeight |
( |
int |
height | ) |
|
◆ adaptWidth()
Windows org.turro.zkoss.dialog.Windows.adaptWidth |
( |
int |
width | ) |
|
◆ addComponent() [1/2]
Windows org.turro.zkoss.dialog.Windows.addComponent |
( |
HtmlBasedComponent |
component | ) |
|
Definition at line 97 of file Windows.java.
98 components.add(component);
◆ addComponent() [2/2]
Windows org.turro.zkoss.dialog.Windows.addComponent |
( |
String |
uri, |
|
|
Map |
args |
|
) |
| |
Definition at line 102 of file Windows.java.
103 Include include =
new Include(
"/WEB-INF/_zul" + uri);
105 args.forEach((k, v) -> include.setDynamicProperty((String) k, v));
107 components.add(include);
◆ addSpace()
Windows org.turro.zkoss.dialog.Windows.addSpace |
( |
| ) |
|
Definition at line 92 of file Windows.java.
93 components.add(
new Space());
◆ closeable()
Windows org.turro.zkoss.dialog.Windows.closeable |
( |
| ) |
|
◆ height()
Windows org.turro.zkoss.dialog.Windows.height |
( |
String |
height | ) |
|
◆ onClose()
Windows org.turro.zkoss.dialog.Windows.onClose |
( |
Consumer< Windows > |
onClose | ) |
|
Definition at line 81 of file Windows.java.
83 EventListener el = (EventListener) (Event event) -> {
87 addEventListener(Events.ON_CLOSE, el);
Windows onClose(Consumer< Windows > onClose)
◆ page()
Windows org.turro.zkoss.dialog.Windows.page |
( |
Page |
page | ) |
|
◆ position()
Windows org.turro.zkoss.dialog.Windows.position |
( |
String |
position | ) |
|
Definition at line 51 of file Windows.java.
Windows position(String position)
◆ scrollable()
Windows org.turro.zkoss.dialog.Windows.scrollable |
( |
| ) |
|
Definition at line 76 of file Windows.java.
77 setContentStyle(
"overflow-y:auto");
◆ show()
void org.turro.zkoss.dialog.Windows.show |
( |
| ) |
|
◆ showHtml()
static void org.turro.zkoss.dialog.Windows.showHtml |
( |
String |
title, |
|
|
String |
html |
|
) |
| |
|
static |
Definition at line 126 of file Windows.java.
127 Html component =
new Html(html);
129 .addComponent(component)
static Windows title(String title)
◆ sizeable()
Windows org.turro.zkoss.dialog.Windows.sizeable |
( |
| ) |
|
◆ title()
static Windows org.turro.zkoss.dialog.Windows.title |
( |
String |
title | ) |
|
|
static |
◆ width()
Windows org.turro.zkoss.dialog.Windows.width |
( |
String |
width | ) |
|
The documentation for this class was generated from the following file: