Grails UIプラグイン内でデータテーブルを使用して、dropdownOptionsのリストを動的にする方法を知っている人はいますか?
次のように dropdownOptions を指定できます。
[age:'Age', formatter:'number', editor:[type:'dropDown', controller:'demo', action:'tableChange', config:[dropdownOptions: ['Foo', 'Bar'], disableBtns:true]],
sortable:true, resizeable: true],
私はそれが次のように機能することを望んでいました:
[age:'Age', formatter:'number', editor:[type:'dropDown', controller:'demo', action:'tableChange', config:[dropdownOptions: Foo.list(), disableBtns:true]],
sortable:true, resizeable: true],