Question

I'm using the Add Form to add records to my JQGrid. One of the fields is a checkbox. Does anyone know how to have the checkbox to be defaulted to checked when the form displays. I thought it would use the onInitializeForm event and the setCell method but I'm having no luck. Thanks.

Was it helpful?

Solution

Found it:

     beforeShowForm: function(eparams) {
         document.getElementById('calc_next_svc').checked = 'true';
     }
 }, // add options
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top