We are using an editable grid with InCell editing in Batch mode.
We have a bool column with a checkbox using a client template:
columns.Template(c => c.Active)
.ClientTemplate("<input type=\"checkbox\" name=\"chkActive\" id=\"chkActive\" value=\"#= Active #\" #= Active?'checked':'' # />")
.Title("Select")
.HeaderHtmlAttributes(new { style = "text-align:center" })
.Width(40).HtmlAttributes(new { style = "text-align:center" });
It seems that we aren't getting two way biding though. We check some check boxes, then scroll down so a read occurs to get the next page of records, but when we scroll up the check boxes are no longer checked.
Is this not the correct way to bind a checkbox to a bool column in the editable grid?