org.zkoss.zk.au.out
Class AuScript
java.lang.Object
org.zkoss.zk.au.AuResponse
org.zkoss.zk.au.out.AuScript
public class AuScript
- extends AuResponse
A response to ask the client to execute the specified client scripts.
data[0]: the client script codes (i.e., JavaScript codes)
AuScript
is rarely used, unless you want to execute
a code snippet rather than a function invocation.
For the function invocation, it is better to use AuInvoke
instead (such as AuInvoke.AuInvoke(Component,String, Object...)
and
AuInvoke.AuInvoke(String, Object...)
).
- Since:
- 3.0.0
- Author:
- tomyeh
- See Also:
AuInvoke
Constructor Summary |
AuScript(Component depends,
java.lang.String script)
|
AuScript(java.lang.String script)
Constructs a AuScript response that doesn't depend on any component. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
AuScript
public AuScript(Component depends,
java.lang.String script)
- Parameters:
depends
- the component that this script depends on.
Or null if this script shall always execute.
AuScript
public AuScript(java.lang.String script)
- Constructs a AuScript response that doesn't depend on any component.
- Since:
- 6.0.0
Copyright © 2005-2011 Potix Corporation. All Rights Reserved.