When using ag-grid with async data, the documentation suggest calling the api.setRowData(data)
method.
The problem is that the api
is ready only after the gridReady
event is fired.
So I have a race condition and in order to solve I need to fetch data inside the gridReady
event, which will cause an unnecessary delay.
Is this the only option ?