Using jqGrid (4.4) with Grails (2.0.3).
I have a grid with checkbox columns. Data is local and not using Grails editUrl property to submit data. I'm submitting the entire page to the backend controller using a regular submit button.
Here's the rub ... Say the grid contains 5 rows and the 5 checkboxes (indexes 0-4) have values of (true, false, true, true, false). What gets to the controller via the params map is an array of 3 checkbox values, all true with indexes 0, 1, 2. So, only the 'true' values are passed to the controller, but I have no idea which row they belong to.
Please advise. Thanks in advance.