On my Kendo grid, I have "editable=true" and datasource with "autoSync=true". As I click on a cell, it becomes editable and when leaving the cell it executes the transport's update event.
That's all fine.
In the update event I have access to the row of the dataset model containing all the values of the modified row (although with editable=true and autosync, only one column value would have been modified).
I need to know which column / field was modified?
Ideally I thought that info would be in the arguments (options) supplied to the update event.
dataSource = new kendo.data.DataSource({
autoSync: true,
transport: {
update: function (options) {
// options does not tell me which model field was updated?
...
But since it isn't there, I suppose I need to bind to the model's set event, but I cannot get that to work.
Any ideas?