Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes

You have a method to save results of a cell immediately when using batch save by calling `batchSave` in the `cellSaved` event as described in the documentation but there is an issue with doing it this way. It break using tab to enter the next column or enter to edit the next row because when you call `batchSave` it ends editing. So, you edit one cell, hit tab to move and start editing the next cell, but then the `batchSave` triggers and it kicks you out of editing.

I want a batch editing with immediate saving to datasource that doesn't break tab/enter to start editing the next cell.

I kind of have of work around with tracking whether is in edit mode and not calling batch save until the user leaves editing by clicking off the grid but this has some issues around still not have the datasource getting updated and done editing the last cell. So, either I can have data source getting updated immediately or I can have tab/enter work but I can't have both currently.

Ideally grid should also refresh so that columns that depend on another will show their updated values immediately without kicking the user of editing a cell.