Grails 2.0.1依赖下拉列表

时间:2012-03-14 08:15:34

标签: grails

我想知道是否有人在不使用原型的情况下在Grails 2.0.1中开发了像Country和State这样的依赖性下拉列表。感谢代码片段

1 个答案:

答案 0 :(得分:0)

你可以使用远程功能和g:选择,比如

<g:select 
      onchange="${remoteFunction(
                  controller:'example', 
                  action:'country',
                  update:'state', 
                  params:'\'country=\'+$(\'#country\').val()' }" 
name="country" ... />

http://alexduan.com/2011/02/17/grails-jquery-and-ajax/