ZK AU Engine"
Maya001122 (talk | contribs) |
Maya001122 (talk | contribs) |
||
Line 8: | Line 8: | ||
Notice that the URL pattern mapped to this engine must be consistent with the <tt>update-uri</tt> parameter of the ZK Loader. | Notice that the URL pattern mapped to this engine must be consistent with the <tt>update-uri</tt> parameter of the ZK Loader. | ||
− | + | == The Initial Parameters == | |
{| border="1" | {| border="1" |
Revision as of 07:57, 13 July 2010
[Required] Class: DHtmlUpdateServlet
DHtmlUpdateServlet is a servlet that handles AJAX requests asynchronously and automatically.
Notice that the URL pattern mapped to this engine must be consistent with the update-uri parameter of the ZK Loader.
The Initial Parameters
compress | [Optional][Default:true][since 3.6.3]
|
extension0
extension1 extension2 ... |
[Optional] [since 5.0]
It specifies an AU extension The first processor must be specified with the name called extension0, second extension1 and so on. The syntax of the value is /prefix=class For example, <init-param>
<param-name>extension0</param-name>
<param-value>/upload=com.super.MyUploader</param-value>
</init-param>
<init-param>
<param-name>extension1</param-name>
<param-value>/extra=com.super.MyExtra</param-value>
</init-param>
|
processor0
processor1 processor2 ... |
[Optional] (deprecated since 5.0)
It specifies an AU processor. The first processor must be specified with the name called processor0, second processor1 and so on. The syntax of the value is /prefix=class For example, <init-param>
<param-name>processor0</param-name>
<param-value>/upload=com.super.MyUploader</param-value>
</init-param>
<init-param>
<param-name>processor1</param-name>
<param-value>/extra=com.super.MyExtra</param-value>
</init-param>
|
Version History