4

我正在使用 Ag-grid,我需要连续合并特定的单元格。

我怎样才能做到这一点?

4

3 回答 3

2

此示例演示了合并“名字”和“姓氏”字段以形成“姓名”字段

columnDefs: [
        {
          headerName: 'Name',
          field: 'name',
          filter: true,
          width: 210,
          valueGetter:function(params){
              return params.data.fname+" "+params.data.lname
          }
        },
...
]
于 2020-11-01T18:58:52.493 回答
0

ag-Grid 将此称为“列跨越”。在过去的 HTML 表格中,我们称之为colspan,以及rowspan与垂直合并单元格密切相关的操作。

无论如何,这里是 ag-Grid 参考:

https://www.ag-grid.com/javascript-grid-column-spanning/

于 2018-01-31T14:07:09.150 回答
-1

您可以将此添加到特定列的 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
}
于 2018-02-19T14:05:22.517 回答