I am trying to use jqGrid within a form where the user fills out traditional formfields such as username, phone, etc. The form contains a jqGrid for line items where the user can add/edit/del the rows, and when done, submit the entire form. I have the grid working as I want it to appear, I just can't get the contents of the grid submitted as part of a containing form.
Here is a pseudo-code example:
<form id="foo">
<input id="username" type="text">Your name<br>
Enter your choices in the grid below:
<!-- imagine jqGrid here -->
<input type="submit" value="Submit the form"></form>
I have searched, googled, read the docs, read the wiki, etc., but just do not see how to pass jqGrid rows and columns as formfields. Any guidance would be appreciated.