I am trying to create the checkbox inside the jqgrid columns and using the below code
{ name: \'CanDo\', width: 50, index: \'CanDo\', edittype: \'checkbo
I believe you are missing the editable:true option. Try this:
editable:true
{ name: 'CanDo', width: 50, index: 'CanDo', editable: true, edittype: 'checkbox', editoptions: { value: "True:False" }, formatter: "checkbox", formatoptions: { disabled: true} }