I can see from the jqGrid JSON data being posted to the browser that the row ID (denoted by "i" in the JSON row data) is coming through correctly, but when I make a selection and check the $('#list').getGridParam('selarrrow')
it is showing the selected row numbers as opposed to their IDs.
Does anyone have experience with this? Thanks
UPDATE
Below is a picture of the JSON result (copy and paste not really an option)
(bigger version of the image here)
And the javascript code to check the selection:
<script type="text/javascript">
function checkSelection(){
alert($('#list').getGridParam('selarrrow').join());
}
</script>