| java.lang.Object org.zkoss.zk.au.AuResponse org.zkoss.zul.au.out.AuPopup
AuPopup | public class AuPopup extends AuResponse (Code) | | A response to ask the client to open or to close a popup.
data[0]: the component UUID
data[1]: what operation to do. 0: close, 1: open by ref, 2: open by (x,y)
data[2]: the x coordination
data[3]: the y coordination
Note: the first argument is always the component itself.
author: tomyeh since: 3.0.0 |
AuPopup | public AuPopup(Component comp, String x, String y)(Code) | | Constructs an instance to open the popup at specified location.
Note: the component must implement the zkType.context JavaScript function.
Parameters: comp - the component that this script depends on.It cannot be null. Parameters: x - the x coordination Parameters: y - the y coordination |
AuPopup | public AuPopup(Component comp, Component ref)(Code) | | Constructs an instance to open the popup at specified location.
Note: the component must implement the zkType.context JavaScript function.
Parameters: comp - the component that this script depends on.It cannot be null. Parameters: ref - the reference component |
AuPopup | public AuPopup(Component comp, boolean option)(Code) | | Constructs an instance to close the popup.
Parameters: comp - the component that this script depends on.It cannot be null. Parameters: option - ignored. |
|
|