I would like to continue to auto save by using the onRowEdit method to call my injected web service. But without the Cancel/Done button set. How do I disable the cancel/done button set but still trigger the onRowEdit method?
I want the entire overlay to disappear so the next row is the only thing below the current row being edited.
Hello Eric,
Thank you for posting in our forum.
You could set a custom overlay outlet container, which can be hidden by default, for example:
<div igxOverlayOutlet #outlet style='display:none;'>
</div>
And set it to the parent and child grids. Here’s a sample: https://stackblitz.com/edit/angular-4t52ew
Or you could use cell editing, which is basically like row editing but without the row overlay UI, and move your service call logic on the onCellEdit event.
Let me know if you have any questions.
Regards,
Maya Kirova