I am using JQGrid to get the date from the RESTFul web services
that i have created on the server
now when i try to hit the url http://www.example.com/event/getAllInfo
, the jqGrid by default appends _search=false&nd=1332922405416&rows=20&page=1&sidx=&sord=asc
to the rest url and because of that my server don't fetch the data back , so
1) how can i remove it
2) and put it back in a url with in such a way that it looks http://www.example.com/event/getAllInfo/false/1332922405416/20/1/0/asc
i can create the url at the server as above but how can i make the jQGrid to use it from RESTful rather then from query string
here is my code
jQuery("#list4").jqGrid({
url:"http://www.example.com/event/getAllInfo",
datatype: "json",
restful: true,
mtype: 'GET',
height: 250,
colNames:['id','title', 'description', 'create date','json','img','video'],
colModel:[
{name:'id',index:'e_info_id', width:60, sorttype:"int"},
{name:'title',index:'e_meta_title', width:90, sorttype:"date"},
{name:'name',index:'e_meta_description', width:100},
{name:'amount',index:'e_info_create_date', width:80, },
{name:'tax',index:'e_meta_JSON', width:80},
{name:'total',index:'e_meta_img', width:80},
{name:'note',index:'e_meta_video', width:150}
],
multiselect: true,
caption: "Manipulating Array Data"
});