Hi,
My spreadsheet might have hundred of records, but I'm intend to detect the changes row each time user click on save button.
I found that when user copy from external excel and paste to kendo spreadsheet, change event only trigger the first value changed.
Below are the code that I tried:
change: function (e) {
var row = e.range._ref.topLeft.row - 1;
if (rowIndexChanged.indexOf(row + "|") >= 0)
return;
rowIndexChanged += row.toString() + "|";
}
Is there any other simpler way to get the changes of row's index from spreadsheet?
Thank you!
Regards,
Su Pei