Hi Chris,
Thanks for contacting Syncfusion Support.
We can reproduce the reported issue at our end. We have confirmed the issue, “Boolean column misbehaves for child Grid with batch editing” is the bug. This fix will be included in the Volume 3, 2018 release which has been scheduled to roll out by the end of the September 2018.
You can work around the reported issue by updating the columnindex value in the following property discussed.
|
<div id="Grid"></div>
<script type="text/javascript">
$(function () {
$("#Grid").ejGrid({
cellSave: function(args){
this._bulkEditCellDetails.columnIndex = this._bulkEditCellDetails.columnIndex + ((this.model.childGrid || this.model.detailsTemplate) ? 1 : 0);
},
childGrid: {
},
});
});
</script> |
We have modified the sample that can be referred from the following jsPlayground.
Regards,
Seeni Sakthi Kumar S.