Grails ZK UI Plugin
Dependency :
compile ":zkui:0.5.6"Custom repositories :
mavenRepo "http://mavensync.zkoss.org/maven2/"
Summary
ZK UI plugin,the same as the ZKGrails plugin, seamlessly integrates ZK with Grails' infrastructures.The different is it more likely to use the Grails' infrastructures such as gsp, controllers rather than zk's zul.
Installation
grails install-plugin zkui
plugins {
compile ':zkui:0.5.6'
}Description
Introduction
ZK UI plugin,the same as the ZKGrails plugin, seamlessly integrates ZK with Grails' infrastructures.The difference is it uses the Grails' infrastructures more, such as gsp, controllers rather than zk's zul.Getting Started
DOCTYPE
The html pages generated by gsp must generate the doc type as follows.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Importing resources
Add the tag <z:resources/> to the head of the layout/main.gsp or any page that you want to use ZK UI Grails plug-ins.<html xmlns="http://www.w3.org/1999/xhtml"> <head> <z:resources/>
Hello World!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Hello World Demo</title> <z:resources/> </head><body> <z:window title="My First ZK UI Application" border="normal"> Hello World! </z:window> </body> </html>