Hi,
We're using Syncfusion grid control with batch edit option. One of the columns is of type bool and we've set the DisplayCheckBox option as true and also EditingType is set to BooleanEdit.
During initial edit, while enabling / disabling the checkbox the changed rows are retrieved properly. But after making multiple changes to same / different rows, the edited rows are not retrieved correctly when using the below command.
$("#Grid").data("ejGrid").getBatchChanges();
How to set the grid cell/row in batch edit mode programmatically?Is this a bug because after multiple edits the getBatchChanges does not retrieve all edited rows and loses old values?We're using the below command to mark all rows as checked, is it causing any conflict?
var gridObj = $("#Grid").ejGrid("instance");
$(gridObj.model.currentViewData).each(function(i) {
gridObj.setCellValue(i, "Status", true);
});
Thanks for your help.