grails 与 extjs 整合

以前知道有个grails-ext-ui这个插件

今天从 http://plugins.grails.org/上把源代码svn下来了一下

发行,的确比较好用。

基本的删除,添加都可以用!

说说基本使用

1)svn 代码
2)按正常的 创建grails domian 来

grails create-domain-class person

然后修改代码
java 代码
 
  1. class Person {  
  2.     String name  
  3.     String sex  
  4.       static constraints = {  
  5.         sex(inList:[" male ",' female '])  
  6.     }  
  7.   
  8. }  

3)修改i18文件
java 代码
  1. ext.ui.domain.person.label  = 学生  
  2. ext.ui.property.person.name.label  = 姓名  
  3. ext.ui.property.person.sex.label  =  性别  
  4. ext.ui.property.person.ID.label  =  编号  

4)grails run-app

就可以看到了

btw:这个插件可以
java 代码
 
  1. static constraints = {  
  2.        sex(inList:[" male ",' female '])  
  3.    }  
自动形成下拉列表!

你可能感兴趣的:(UI,SVN,ext,grails)