I am using jqGrid 4.1.2 and checkboxes are not updating as I navigate the input form. For example if I check a checkbox and submit form the change is recorded in the database, but the checkbox tick is not displayed if I reload the form.
{name:'entireTooth',width:50, editable:true, hidden:true, edittype:'checkbox',formatter: 'checkbox', editoptions:{value:'Yes:No'}, editrules:{edithidden:true}}
Produces the checkbox in the form:
http://screencast.com/t/jFJeoJWL
Firebug shows the HTML created as this:
<input id="entireTooth" class="FormElement" type="checkbox" value="Yes" offval="No" name="entireTooth" role="checkbox">
jqGrid records changes to the database correctly, it just fails to update the checkbox to the database value when the form is loaded.
Thanks for any suggestions and help!