- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 46 of file Dialogs.java.
◆ addComponent() [1/3]
Dialogs org.turro.zkoss.dialog.Dialogs.addComponent |
( |
HtmlBasedComponent |
component | ) |
|
Definition at line 115 of file Dialogs.java.
116 components.add(component);
◆ addComponent() [2/3]
Dialogs org.turro.zkoss.dialog.Dialogs.addComponent |
( |
String |
uri, |
|
|
Map |
args |
|
) |
| |
Definition at line 120 of file Dialogs.java.
Dialogs addComponent(HtmlBasedComponent component)
◆ addComponent() [3/3]
Dialogs org.turro.zkoss.dialog.Dialogs.addComponent |
( |
String |
uri, |
|
|
String |
height, |
|
|
Map |
args |
|
) |
| |
Definition at line 124 of file Dialogs.java.
125 Include include =
new Include(
"/WEB-INF/_zul" + uri);
127 args.forEach((k, v) -> include.setDynamicProperty((String) k, v));
129 include.setHeight(
height);
130 components.add(include);
Dialogs height(String height)
◆ addField()
Definition at line 110 of file Dialogs.java.
111 fields.add(field.initField());
◆ closeable()
Dialogs org.turro.zkoss.dialog.Dialogs.closeable |
( |
| ) |
|
◆ emptyCancel()
Dialogs org.turro.zkoss.dialog.Dialogs.emptyCancel |
( |
| ) |
|
Definition at line 95 of file Dialogs.java.
96 events.add(
new DialogEvent(DialogButton.BUTTON_CANCEL,
null));
◆ emptyClose()
Dialogs org.turro.zkoss.dialog.Dialogs.emptyClose |
( |
| ) |
|
Definition at line 105 of file Dialogs.java.
106 events.add(
new DialogEvent(DialogButton.BUTTON_CLOSE,
null));
◆ getValue()
Object org.turro.zkoss.dialog.Dialogs.getValue |
( |
String |
label | ) |
|
Definition at line 151 of file Dialogs.java.
152 return fields.stream().filter(f -> label.equals(f.getLabel())).findFirst().get().getEditorValue();
◆ height()
Dialogs org.turro.zkoss.dialog.Dialogs.height |
( |
String |
height | ) |
|
◆ onCancel()
Dialogs org.turro.zkoss.dialog.Dialogs.onCancel |
( |
Consumer< Dialogs > |
onCancel | ) |
|
Definition at line 90 of file Dialogs.java.
91 events.add(
new DialogEvent(DialogButton.BUTTON_CANCEL,
onCancel));
Dialogs onCancel(Consumer< Dialogs > onCancel)
◆ onClose()
Dialogs org.turro.zkoss.dialog.Dialogs.onClose |
( |
Consumer< Dialogs > |
onClose | ) |
|
Definition at line 100 of file Dialogs.java.
101 events.add(
new DialogEvent(DialogButton.BUTTON_CLOSE,
onClose));
Dialogs onClose(Consumer< Dialogs > onClose)
◆ onOk()
Dialogs org.turro.zkoss.dialog.Dialogs.onOk |
( |
Consumer< Dialogs > |
onOk | ) |
|
Definition at line 85 of file Dialogs.java.
86 events.add(
new DialogEvent(DialogButton.BUTTON_OK,
onOk));
Dialogs onOk(Consumer< Dialogs > onOk)
◆ page()
Dialogs org.turro.zkoss.dialog.Dialogs.page |
( |
Page |
page | ) |
|
◆ position()
Dialogs org.turro.zkoss.dialog.Dialogs.position |
( |
String |
position | ) |
|
Definition at line 60 of file Dialogs.java.
Dialogs position(String position)
◆ show()
void org.turro.zkoss.dialog.Dialogs.show |
( |
| ) |
|
Definition at line 134 of file Dialogs.java.
139 if(getPage() ==
null) {
140 setPage(getMeAPage());
◆ sizeable()
Dialogs org.turro.zkoss.dialog.Dialogs.sizeable |
( |
| ) |
|
◆ title()
static Dialogs org.turro.zkoss.dialog.Dialogs.title |
( |
String |
title | ) |
|
|
static |
Definition at line 161 of file Dialogs.java.
162 return new Dialogs(
title);
static Dialogs title(String title)
◆ width()
Dialogs org.turro.zkoss.dialog.Dialogs.width |
( |
String |
width | ) |
|
Definition at line 70 of file Dialogs.java.
Dialogs width(String width)
The documentation for this class was generated from the following file: