Hello,
i want to use a datagrid to display some kind of information about an event(e.g. some company meetings with a date, starttime and endtime).
i added the grid, bind it to my data and get through the batch editing example of your site all the changes made to the specific row.
But this does not work for the column where i need to pick a specific time with an TimePicker, if i change the time the grid is showing "you have 0 changes in this row"
https://stackblitz.com/edit/angular-rrhned
There is a Stackblitz, try to change the time in the "Date" Column
Is there a way to get the changes made in that editor?
Best Regards
Alex
thanks! That worked for me
Hello Alexander,
When you provide an editor template, the binding in the context of that template should be done not to the implicit `value` parameter but to the `cell.editValue` property. This is so that the grid can inform the user through the CRUD events and to support not committing the value directly. I've updated your sample.
I've also checked our documentation and it seems we don't mention how the user can setup a custom editor, so we'll get to fix that ASAP.
Regards