[jQuery] Re: jqGrid inline edit - cannot save or cancel if only one row
Thanks Tony, that seems to work. I also switched to using the double click handler and cleared the last selected value if they double click the same row to save their changes. ondblClickRow: function(id) { if (id) { var grid = jQuery('#grid'); if(id !== lastsel) { grid.saveRow(la
[jQuery] Re: Dynamic checkbox not included in submit by jquery.form
Doh! all that and the problem was just that I didn't include a name attribute in the checkboxes, just id's.