Home > Mobile >  AG-GRID: Concatenating two rows in one cell
AG-GRID: Concatenating two rows in one cell

Time:05-26

In my code, I'm using AG-GRID for angular. I have two columns. One is Account.Name and the other is Account.Surname. I'm trying to display these two columns in one cell. I used the approach below but it did not work. What should I do to achieve what I want?

TS:

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

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

CodePudding user response:

Try this,

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