0

onChangeイベントのgspページでselectboxの値を取得したい。次のコードを試しました。

    <g:select id="resource-type" name="resource-type" from="${resultMap?.keySet()}" onchange="${remoteFunction(action:'updateDiffTable'
, update:'diff-table',params:[currentSelection:this.value,resultMap:resultMap])}">

currentSelectionパラメーターをこの選択ボックスの値に設定したいと思います。問題は、現在のコードでnullになったということです。それを解決する方法はありますか?

4

1 に答える 1

2

次のようなものを試してください:

<g:select
    id="resource-type" 
    name="resource-type" 
    from="${resultMap?.keySet()}" 
    onchange="${remoteFunction(controller: 'mycontroller', action: 'action1', params:'\'id=\' + this.value')}" />
于 2012-12-26T11:46:55.440 に答える