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!

1
Vote

The case I have: 

2 columns in the grid, both of them are editable and have edit template. 

Implemented one-click edit based on syncfusion documentation. 


When I update one column and programmatically update another one these are the options I tried:

- setCellValue - doesn't work. It erases editTemplate and replaces it with static value and then causes the error, after which nothing can be edited

As a side note: Why does setCellValue doesn't allow me to use 'null' as a value? 


- updateRow - works, but immediately stops the editing. So now I need to switch inline edit for the row again programmatically and it's visible because I have to use a timeout, otherwise it doesn't work at all. 


It's a very common case to update one cell based on another, when they both are editable. For example - setting up a default value.