I’ve got an Ag-Grid running on my Vuejs project and it has some columns with custom cell renderers using cellRenderer
, but when I add rows to it like so:
gridApi.applyTransaction({
add: [rowNode]
})
The new rows are added to the grid, but every cell with a cellRenderer
doesn’t render.
How would I go about fixing this?