change

Fires when the configuration or the data of the sheet change.

Event Data

e.sender kendo.spreadsheet.Sheet

The sheet instance.

Example - subscribe to the "change" event during initialization

<div id="spreadsheet"></div>
<script>
    $("#spreadsheet").kendoSpreadsheet();

    var spreadsheet = $("#spreadsheet").data("kendoSpreadsheet");

    var sheet = spreadsheet.activeSheet();

    sheet.bind("change", function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("sheet state changed");
    });

    sheet.range("A1:B2").values([ [1, 2], [2, 3] ]);
</script>
In this article