Grails UI 数据表动态下拉选项

发布于 2024-08-16 15:22:39 字数 458 浏览 3 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼性发作 2024-08-23 15:22:39

我不认为这是直接内置到 GrailsUI 插件中的,但您可以做的是向单元格添加一个格式化程序并从那里构建下拉菜单。像这样的东西..

<script>
var customFormatter = function(elCell, oRecord, oColumn, oData) {
  elCell.innerHTML = 
    <g:select id="..."
    </g:select>
 }
}
</script>
<gui:dataTable id="myTable" ....
  columnDefs="[
        [key:'key', label:'Label', formatter:'@customFormatter']
]"/>

从那里你只需使用

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..

<script>
var customFormatter = function(elCell, oRecord, oColumn, oData) {
  elCell.innerHTML = 
    <g:select id="..."
    </g:select>
 }
}
</script>
<gui:dataTable id="myTable" ....
  columnDefs="[
        [key:'key', label:'Label', formatter:'@customFormatter']
]"/>

From there you are simply using the

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文