Last updated by groovyquan 11 months ago
grails install-plugin zkui
Last updated by groovyquan 2 weeks ago
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>
Documentation
The official docs are
hereNews
May 11, 2012
Grails ZK UI Plugin 0.5.1 Release Notes February 18, 2012
Grails ZK UI Plugin 0.5 Release Notes February 12, 2012
Grails ZK UI Plugin 0.5.M3 Release NotesJanuary 16, 2012
Grails ZK UI Plugin 0.4.1 Release NotesNovember 21, 2011
Grails ZK UI Plugin 0.5.M2 Release NotesNovember 12, 2011
Grails ZK UI Plugin 0.5.M1 Release NotesOctober 22, 2011
Grails ZK UI Plugin 0.4 Release NotesSeptember 14, 2011
Grails ZK UI Plugin 0.3.3 Release NotesSeptember 6, 2011
Grails ZK UI Plugin 0.3.2 Release NotesAugust 11, 2011
Grails ZK UI Plugin 0.3.1 Release NotesJune 14, 2011 Grails ZK UI Plugin 0.3 Release,it will be the first milestone.
Last updated by groovyquan 11 months ago
Last updated by groovyquan 11 months ago