Use ZK JSP Tags instead of ZK Filter

From Documentation


DocumentationZK Developer's ReferencePerformance TipsUse ZK JSP Tags instead of ZK Filter
Use ZK JSP Tags instead of ZK Filter


The ZK filter actually maps each HTML tag to the corresponding XHTML components. As described in the previous section, it consumes more memory than necessary since ZK has to maintain the states of all ZK components (including XUL and XHTML components).

ZK JSP tags are introduced to eliminate the need of the ZK filter for JSP pages. With ZK JSP tags, a ZUL component is created for each ZK JSP tag. All other HTML tags are encapsulated as a special component.

<syntax lang="xml" > <z:page>

Name <z:textbox/>

</z:page> </syntax>

is equivalent to the following code snippet, if a ZUL page is used,

<syntax lang="xml" > <n:table xmlns:n="http://www.zkoss.org/2005/zk/native">

   <n:tr>
       <n:td>Name</n:td>
       <n:td>   <textbox/></n:td>
   </n:tr>

</n:table> </syntax>

Version History

Version Date Content
     



Last Update : 2010/09/18

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.