首页 > 代码库 > EasyUI中DataGrid构建复合表头
EasyUI中DataGrid构建复合表头
在使用easyui的DataGrid控件时,构建复合表头就显得非常简单了。只需要在使用columns属性时通过数组的方式编写列名即可。如我们需要构建成一个如下的表头:
Columns的代码如下:
columns: [[ { field: ‘_id‘, title: ‘行号‘, fixed: true, rowspan:2 }, { field: ‘_j‘, title: ‘铁路局‘, fixed: true, colspan:2 } ], [ { field: ‘_id‘, title: ‘京局‘, fixed: true }, { field: ‘_j‘, title: ‘哈局‘, fixed: true } ]]
但是这里需要注意一点:DataGrid在构建复合表头时,合并单元格使用的colspan和rowspan的值一定要是数字,不能是字符。如
{ field: ‘_cj‘, title: ‘侧架‘, width: 20, colspan: 9 }
而不能是
{ field: ‘_cj‘, title: ‘侧架‘, width: 20, colspan: ‘9’ }
EasyUI中DataGrid构建复合表头
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。