Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
Currently, we have Ag Grid 35 and setRowData() was deprecated around at 31. This deprecation is cloudy in the documentation, can not be find easily by googling and LLMs do not seem knowing too much...
#1: Initial revision
Currently, we have Ag Grid 35 and `setRowData()` was deprecated around at 31. This deprecation is cloudy in the documentation, can not be find easily by googling and LLMs do not seem knowing too much about them.
We had an incompatible API change below the radar.
The method currently to use, is:
`gridOptions.api.setGridOption('rowData', your_row_data)`
Also many other `set...` method were all unified under `setGridOption('...')`. Like `setStyle` or similars.
