I want to add Edit/Save and Delete button in every row of ag-Grid(Angular version). I'm using community edition.
Clicking on Edit button should make entire row editable and show Save button. Delete button should remove the row.
Saw few answers on stackoverlow but seems they aren't working. Please help!
You need to create extra fields with no field data, and add buttons there. You can add the button using a cellRenderer
. Then when each of your button's are clicked, you can call a method to do your desired action, e.g. save row, delete row etc.
I've created a quick example for you on StackBlitz here.