saveChanges

Saves any pending changes by calling the sync method.

Fires the saveChanges event.

Example - save changes

<div id="grid"></div> <script> $("#grid").kendoGrid({ columns: [ { field: "name" }, { field: "age" } ], dataSource: { data: [ { id: 1, name: "Jane Doe", age: 30 }, { id: 2, name: "John Doe", age: 33 } ], schema: { model: { id: "id" } } }, editable: true }); var grid = $("#grid").data("kendoGrid"); grid.addRow(); grid.saveChanges(); </script>
In this article
saveChanges
Not finding the help you need?
Contact Support