Is there a method to add and remove rows to/from an already populated grid?
This is the behaviour I'm looking for:
I populate a grid using a json service as datasource
The user click on a link inside a cell of a row in the grid.
This link makes a ajax call to an API retrieving some values with the same schema/columns of the grid.
I add a new row just below the clicked one, inserting the values retrieved from the API.
This row will also contain a cell with the link to remove itself.
I've looked into the documentation but I haven't found any method to add/remove rows
Many thanks
Best Regards,
Marco