我使用的jqGrid来从日RESTFul web services
,我已经在服务器上创建
现在当我尝试打网址http://www.example.com/event/getAllInfo
中,jqGrid的默认追加_search=false&nd=1332922405416&rows=20&page=1&sidx=&sord=asc
的休息url和的,因为我的服务器没有数据取回来,所以
1)如何删除它
2),并把它放回一个URL以这样一种方式,它看起来http://www.example.com/event/getAllInfo/false/1332922405416/20/1/0/asc
我可以在服务器上创建的URL上面一样,但我怎么能做出的jqGrid使用它从REST风格而不是从查询字符串
这里是我的代码
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"
});