我正在使用Ag-grid,我需要连续合并特定的单元格。
我该怎么做?
答案 0 :(得分:0)
ag-Grid将此称为“列跨越”。在HTML表格的旧日子里,我们将此colspan
和rowspan
称为与垂直合并单元格密切相关的操作。
无论如何,这是ag-Grid参考:
答案 1 :(得分:0)
您可以将此添加到特定列的colDef
cellClass: function(params) {
if(params.data.someConditionForCellsToBeMerged) {
return params.data.someConditionForCellToKeep ? "top-row-span": "bottom-row-span";
}
}
然后在你的CSS中:
.ag-neo .ag-cell.top-row-span {
border-bottom: 0px;
}
.ag-neo .ag-cell.bottom-row-span {
border-top: 0px;
text-indent: -100em; // you can use this to hide the content of the bottom cell
}
答案 2 :(得分:0)
此示例演示了“名字”和“姓氏”字段的合并以形成“名称”字段
columnDefs: [
{
headerName: 'Name',
field: 'name',
filter: true,
width: 210,
valueGetter:function(params){
return params.data.fname+" "+params.data.lname
}
},
...
]