JQuery EasyUI from Grails
Dependency :
compile ":geasyui:0.8"
Summary
DEPRECATED. See: http://grails.org/plugin/easyui
Installation
grails install-plugin geasyui
Description
Provides jQuery EasyUI framework resource files and taglibs.The plugin is deprecated please see:
http://grails.org/plugin/easyui
Including the resources
You must use the Grails resources framework to make use of this plugin.Download http://www.jeasyui.com/download, extract content in webapp/js/jquery-easyui jquery-easyui - jQuery EasyUI framework (version 1.3.2)Usage
<r:require modules="easyui"/> <r:layoutResources />
Hello World!
<html> <head> <title>Hello World Demo</title> <r:require module="easyui"/> <r:layoutResources /> </head> <body> <e:window title="My Window" width="300px" height="100px"> Some Content. </e:window> </body> </html>