API calls missing by grid

Hello,

i am currently testing the new version of DHTMLX Suite 6.0.
I miss the function to create a new row in the grid.

I notice that the whole api is a lot smaller than the old version. is there still a lack of documentation or will it stay that way?

Regards Stephan

All the data components of new dhtmlxSuite use the dataCollection helper for the data organizing.
It allows to use a similar dataset format and API for all the components.
Here you can find it:
https://docs.dhtmlx.com/suite/helpers__data_collection.html
so for adding a new row to grid you need to call something like:

grid.data.add({ id: "new_id", col1: "first cell", col2: "second cell" });