Configure ZK Pivottable JSP Tag"

From Documentation
m
Line 2: Line 2:
  
 
__TOC__
 
__TOC__
 +
 +
Before using pivottable in your JSP pages, you would need to download a few library jars, and make some configuration changes to your project.
  
 
===Downloads===
 
===Downloads===

Revision as of 02:59, 13 May 2013

Configure ZK Pivottable JSP Tag



Before using pivottable in your JSP pages, you would need to download a few library jars, and make some configuration changes to your project.

Downloads

Configuration

  1. Configure your JSP web application to use ZK Framework, ZK Pivottable, ZK JSP Tags Library
    • copy the binaries into WEB-INF/lib - OR -
    • copy the binaries into the shared library folder of your web server - OR -
    • copy the binaries into one of the folders pointed to by your web application's classpath
  2. Add DHtmlUpdateServlet and its mapping into web.xml as shown below
    <servlet>
        <description>The asynchronous update engine for ZK</description>
        <servlet-name>auEngine</servlet-name>
        <servlet-class>org.zkoss.zk.au.http.DHtmlUpdateServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>auEngine</servlet-name>
        <url-pattern>/zkau/*</url-pattern>
    </servlet-mapping>

Last update: 2013/05/13



Last Update : 2013/05/13

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