I need to submit all selected JQGrid row ids to the server.
var rows = $("#grid").getGridParam("selarrrow");
Then on the server I would like to do this.
String[] rows = request.getParameterValues("rows");
Now what is the simplest way to submit rows
to the server? Must I use POST?