Hello Team,
Thanks, For your quick response.
Please check our code for UnModel CheckBox. As we need checkbox only on group summary row so, we are rendering the checkbox in the summary row only.
In this case the editable function is not working.
{
dataIndx: "state",
align: "center",
title: "UnModel",
minWidth: 70,
cb: {
header: false,
select: true,
all: true
},
render: function(ui) {
if (ui.rowData.pq_close != undefined) {
if (executingProjectChecked.indexOf(ui.rowData[0]) == -1) {
return "<input type='checkbox' class='exUnModel' value='" + ui.rowData[0] + "'/>";
} else {
return "<input type='checkbox' checked class='exUnModel' value='" + ui.rowData[0] + "'/>";
}
}
},
editable:function(ui){
console.log(ui);
}
},
executingProjectChecked is a array for storing the values for checked project and
every time when grid refresh in the render function we checked values and print the checked and unchecked.
Please check above code and give your suggestion.