I have a JQGrid on site A and it is loaded in user control. I have a handler on site B to load the control. Site B returns JSON {"rows":[{"CategoryName":"Beverages"}]} but JQGrid will not load it.
Any ideas??
$("#jqGrid").jqGrid({
url: 'https://SITEB.com/ReviewHandler.ashx',
datatype: "json",
colModel: [{ label: 'CategoryName', name: 'CategoryName', width: 75, editable: true },
]});