Hi,
Is the Cancel button in Inline edit mode really supposed to cancel all changes? If I run this code and make changes on one line and save it with the Save button and then Edit another line and click Cancel the changes in the first line aer also reverted.
Is the Cancel button in Inline edit mode really supposed to cancel all changes? If I run this code and make changes on one line and save it with the Save button and then Edit another line and click Cancel the changes in the first line aer also reverted.
<body> <div id="mygrid"></div> <script> var mydata = [ { id: 1, name: "John" }, { id: 2, name: "Stephen" }, { id: 3, name: "Lisa" } ]; var myDS = new kendo.data.DataSource({ data: mydata }); $(document).ready(function() { //Init Grid var gridMagXtrReturnLines = $("#mygrid").kendoGrid({ editable: "inline", navigatable: true, autoBind: false, scrollable: false, dataSource: myDS, columns: [ { field: "id", title: "ID", width: 70 }, { field: "name", title: "Namn", width: 200 }, { command: ["edit"], title: " " } ] }); myDS.read(); }); </script></body>