Would someone please point me at an example of jqGrid showing how to populate the grid using one JSON based dataAdapter but linking one column to a second JSON based dataAdapter. I don’t want to edit the column and thus don’t need to populate a dropdown.
For example, if I was using a dataAdapter containing a ‘record’ like this ‘{“firstname” : “John”, “lastname” : “Doe”, “stateid” : “CA”}’ to populate the grid, how could I use a second dataAdapter containing ‘records’ like ‘{“stateid” : “CA”, “name” : “California”}’ to fill in the grid so it displayed “John”, “Doe”, “California”.
Thank you