I've rendered the checkbox using render function like this
render: function(data){
var html = '';
if(options.check)
html = '<input type="checkbox" class="cx-action ' + options.checkClass + '" data-id="' + data +'">\n';
return html;
}
Don't know what to do next to update the records.
Pardon any mistakes. I'm new here.
Thanks