So, I have noticed in my ag-grid the data seems to load out of order - and thus some functions I run can not use the params.rowdata as it is null. are there any built in events in ag-grid that are triggered after all the data is loaded?
Asked
Active
Viewed 417 times
1 Answers
0
I think you could use firstDataRendered
Grid Event
const onFirstDataRendered = (params) => console.log({ params });
...
<AgGridReact onFirstDataRendered={onFirstDataRendered} />
...

Ikhyeon Kim
- 171
- 5