Grails UI 数据表动态下拉选项
使用 Grails UI 插件中的数据表,有人知道如何使 dropdownOptions 列表动态化吗?
您可以像这样指定 dropdownOptions:
[年龄:'年龄',格式化程序:'数字',编辑器:[类型:'dropDown',控制器:'演示',操作:'tableChange',配置:[dropdownOptions:['Foo','Bar'],disableBtns :真的]], 可排序:true,可调整大小:true],
我希望它能按以下方式工作:
[年龄:'年龄',格式化程序:'数字',编辑器:[类型:'dropDown',控制器:'演示',操作:'tableChange',配置:[dropdownOptions:Foo.list(),disableBtns:true]] , 可排序:true,可调整大小:true],
Using the datatable, within the Grails UI plugin, does anyone know how to make the list of dropdownOptions dynamic?
You can specify the dropdownOptions like this:
[age:'Age', formatter:'number', editor:[type:'dropDown', controller:'demo', action:'tableChange', config:[dropdownOptions: ['Foo', 'Bar'], disableBtns:true]],
sortable:true, resizeable: true],
I was hoping it would work in the following way:
[age:'Age', formatter:'number', editor:[type:'dropDown', controller:'demo', action:'tableChange', config:[dropdownOptions: Foo.list(), disableBtns:true]],
sortable:true, resizeable: true],
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为这是直接内置到 GrailsUI 插件中的,但您可以做的是向单元格添加一个格式化程序并从那里构建下拉菜单。像这样的东西..
从那里你只需使用
I don't think this is built directly into GrailsUI plugin but what you can do is add a formatter to the cell and build the drow-down from there. Something like this..
From there you are simply using the