'ag-grid detail cell renderer no update data when immutableData is settled

I have an small realtime app. When in detailCellRendererParams when immutable data property is settled data is not updated

detailGridOptions: {
  suppressCellSelection: true,
  immutableData: true,
  getRowNodeId: data => data.id,

...

  getDetailRowData: ({ successCallback, data }) => {
    successCallback(data.positions)
  }

When immutable data property is not defined works well (but cell rendereres are flickering)

In master grid works perfectly



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source