Hi,
I've a boolean column that displays as checkbox in my grid which has batch edit enabled. I'm using the Javascript API method setCellValue to update all the records to true but the grid displays true instead of a checked checkbox.
Should I be refreshing template? I've tried it but no success.
var obj = $("#GridSample1").ejGrid("instance");
for (var i = 0; i < obj.model.currentViewData.length; i++) {
obj.setCellValue(i, "Status", true)//updating each cell of Status to true
}
Regards,
Ajay