Getting Started with ZK Calendar"

From Documentation
m (replace tt with code (via JWB))
Line 32: Line 32:
 
# [http://www.zkoss.org/download/zk.dsp Downloaded ZK CE 7.0.3 or above]
 
# [http://www.zkoss.org/download/zk.dsp Downloaded ZK CE 7.0.3 or above]
 
# [http://www.zkoss.org/download/zkcalendar.dsp Downloaded ZK Calendar Binary]
 
# [http://www.zkoss.org/download/zkcalendar.dsp Downloaded ZK Calendar Binary]
# Extract those 2 zip files, include all JAR files by putting them into your project's <tt>/WEB-INF/lib</tt>
+
# Extract those 2 zip files, include all JAR files by putting them into your project's <code>/WEB-INF/lib</code>
  
 
Depending on your IDE the steps will differ, however, the most important part is both ZK Calendar and ZK’s JAR files are included in your project's classpath. The easiest way to create a compatible project is to use [http://www.zkoss.org/download/zkstudio.dsp ZK Studio] and then include calendar.jar as a library.
 
Depending on your IDE the steps will differ, however, the most important part is both ZK Calendar and ZK’s JAR files are included in your project's classpath. The easiest way to create a compatible project is to use [http://www.zkoss.org/download/zkstudio.dsp ZK Studio] and then include calendar.jar as a library.
Line 38: Line 38:
 
=A Very Basic Application=
 
=A Very Basic Application=
  
After setup, we can create an <tt>index.zul</tt> with the content below to verify the setup works or not.
+
After setup, we can create an <code>index.zul</code> with the content below to verify the setup works or not.
  
 
<source lang="xml">
 
<source lang="xml">

Revision as of 09:05, 17 January 2022


DocumentationZK Calendar EssentialsGetting Started with ZK Calendar
Getting Started with ZK Calendar




Here we introduce the required setup for a web application to use ZK Calendar.


License

ZK Calendar is GPL/Commercial dual-licensed.

Setup by Maven

We recommend managing your project with Maven. First, you check the available version in ZK Maven CE repository. Then, you can adopt ZK Calendar easily by simply adding a dependency like the following example. [1]


<dependency>
	<groupId>org.zkoss.calendar</groupId>
	<artifactId>calendar</artifactId>
	<version>${calendar.version}</version>
</dependency>



  1. If you didn't setup zk maven repository yet, you have to setup zk maven repository.

Manually Installing the ZK Calendar JAR

  1. Downloaded ZK CE 7.0.3 or above
  2. Downloaded ZK Calendar Binary
  3. Extract those 2 zip files, include all JAR files by putting them into your project's /WEB-INF/lib

Depending on your IDE the steps will differ, however, the most important part is both ZK Calendar and ZK’s JAR files are included in your project's classpath. The easiest way to create a compatible project is to use ZK Studio and then include calendar.jar as a library.

A Very Basic Application

After setup, we can create an index.zul with the content below to verify the setup works or not.

<zk>
    <calendars/>
</zk>


This gives you the very first ZK Calendar application. When a server starts, navigate to index.zul and the following page should be displayed.

ZKCalEss Simple calendar application.png


Congratulations! That is all it takes to embed ZK Calendar within your ZK application.

Example Source Project

You can find all example codes mentioned in this book at the example project.


The example project is at Github


Last Update : 2022/01/17

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