Hi Anoop,
How exactly are the record fields populated? For example, setting the field value with the dataItem's set method, as demonstrated below, works as expected and on clicking the "Save" button in the Grid's toolbar, call to the "Update" action is sent.
<input type="button" value="Set Value" onclick="setValue()" />
click handler:
function setValue() {
var grid = $("#grid").data("kendoGrid");
var dataItem0 = grid.dataSource.data()[0];
dataItem0.set("ProductName", "apple");
}
Regards,
Ivan Danchev
Progress Telerik
Progress is here for your business, like always.
Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.