AG-GRID:在一个单元格中连接两行

AG-GRID: Concatenating two rows in one cell

在我的代码中,我将 AG-GRID 用于 angular。我有两列。一个是 Account.Name,另一个是 Account.Surname。我试图在一个单元格中显示这两列。我使用了下面的方法,但没有用。我应该怎么做才能达到我想要的?

TS:

{ columnGroupShow: 'open', headerName: 'Requested Person', valueGetter: this.nameGetter },

nameGetter(params) {
    return params.ticket.Account.Name + ' ' + params.ticket.Account.Surname;
  }

试试这个,

{ 
  columnGroupShow: 'open', 
  headerName: 'Requested Person', 
  valueGetter: function(params) {
    return params.ticket.Account.Name + ' ' + params.ticket.Account.Surname;
  }
},