jqGrid with an editable checkbox column
To allow the checkboxes to always be click-able, use the checkbox formatter’s disabled property: { name: ‘MyCol’, index: ‘MyCol’, editable:true, edittype:’checkbox’, editoptions: { value:”True:False”}, formatter: “checkbox”, formatoptions: {disabled : false} , … To answer your second question, you will have to setup an event handler for the checkboxes, such that when one is clicked a … Read more