1
我想知道是否有人在不使用原型的情況下在Grails 2.0.1中開發了像Country和State這樣的依賴關係下拉菜單。讚賞的代碼段Grails 2.0.1依賴關係下拉列表
我想知道是否有人在不使用原型的情況下在Grails 2.0.1中開發了像Country和State這樣的依賴關係下拉菜單。讚賞的代碼段Grails 2.0.1依賴關係下拉列表
你可以只使用remotefunction和g:選擇,像
<g:select
onchange="${remoteFunction(
controller:'example',
action:'country',
update:'state',
params:'\'country=\'+$(\'#country\').val()' }"
name="country" ... />