Get ZK Up and Running with MVC"

From Documentation
Line 10: Line 10:
  
 
= Installation =
 
= Installation =
 +
 +
In this section, we'll tell you how to setup up ZK in a web application project.
 +
 +
== Download ==
 +
 +
 +
If you use maven, please add following dependencies:
 +
 +
<source lang="xml">
 +
 +
</source>
 +
 +
== Setup Class Path ==
 +
 +
== Configure web.xml ==
  
 
= The Domain in this tutorial =
 
= The Domain in this tutorial =

Revision as of 08:02, 28 June 2012

WarningTriangle-32x32.png This page is under construction, so we cannot guarantee the accuracy of the content!

Introduction

In this tutorial, we will teach you how to build a web application with ZK.

The target application we are going to build is a search product application.

Tutorial-searchexample.png

Installation

In this section, we'll tell you how to setup up ZK in a web application project.

Download

If you use maven, please add following dependencies:

Setup Class Path

Configure web.xml

The Domain in this tutorial

Sketch User Interface

Manipulate UI

Stuff a bunch of data

Handling User Action

UI Control Patterns

MVC v.s MVVM

When to use & Restriction

Bind UI Automatically

Binding data

Handling UI commands

Test ZK Application

Deploy and Run