I was trying to change the row after updating using the onItemUpdated callback and was impossible. Then I saw this in the source code:
this._callEventHandler(this.onItemUpdated, {
row: $updatingRow,
item: updatedItem,
itemIndex: updatingItemIndex,
previousItem: previousItem
});
I guess that $updatingRow means that is not returning the updated row.
I was trying to change the row after updating using the onItemUpdated callback and was impossible. Then I saw this in the source code:
this._callEventHandler(this.onItemUpdated, {
row: $updatingRow,
item: updatedItem,
itemIndex: updatingItemIndex,
previousItem: previousItem
});
I guess that $updatingRow means that is not returning the updated row.