What’s the equivalent of flexigrid’s params in jqgrid?
$('#bsDetail').flexigrid({
@* refactor, avoid parameters in url
url: '/Area/Location/Details?id=@(Guid.Empty.ToString())', *@
url: '/Area/Location/Details',
params : [ { name : 'id', value : '@Guid.Empty' } ],
If you use default HTTP GET (
mtype:'GET') the jqGrid equivalent will beMoreover if the URL parameters are no constants you can consider to use
postDatahaving functions as the properties (see here);