Hello,
We are trying to build a 3 level grid with batch edit on all 3 grids. However we would like to [save changes] command button on the top level parent's toolbar to save all pending changes on all grids. We were able to achieve this functionality as long as all child grids are still expanded. When we edit a record on child record and collapse, the below code does not work .
$(".k-widget.k-grid").each(function (index, value) {
var grid = $(this).data("kendoGrid");
grid.saveChanges();
//grid.dataSource.sync();
});
I am attaching index.html for your reference
Thanks,
Sai