1

我想删除网格中的一行,但网格总是只发布id和oper,我还想发布额外的数据。

我的 jqgrid 是这样的:

jQuery("#editgrid").jqGrid({
url:'autoJSON.php', datatype: "xml", colNames:['RowID','Asigurator','Cilindree','Persoana', 'Perioada', 'Pret'], colModel:[ {name:'rowID',index:'rowID', width:60, editable:true}, {name:'idAsigurator',index:'idAsigurator', width:100, editable:true,editoptions:{size:20}},
{name:'cilindree',index:'cilindree', width:90, editable:true,editoptions:{size:20}}, {name:'persoana',index:'persoana', width:300,editable:true,edittype:"select",editoptions:{value:"Persoana juridica:Persoana juridica;Pensionar:Pensionar;Persoana fizica:Persoana fizica"}}, {name:'perioada',index:'perioada', width:120, align:"right",edittype:"select",editable:true,editoptions:{value:"12 luni:12 luni;6 luni:6 luni"}}, {name:'pret',index:'pret', width:80, align:"right",editable:true,editoptions:{size:20}} ], width:900, height:600, pager: '#pagered', sortname: 'rowID', viewrecords: true, sortorder: "desc", caption:"Autoturisme", editurl:"autoPOST.php", }); jQuery("#editgrid").jqGrid('navGrid',"#pagered",{edit:true,add:true,del:true});

我应该怎么做才能在 autoPOST.php rowID 中访问也作为 post 变量。

谢谢


当试图删除我看到的唯一帖子变量是 oper='del' 和 id 返回我要删除的所选行的 id

4

2 回答 2

1

引用您的问题“我还想发布其他数据。”,我假设您想在 rowId 和“del”旁边发布另一个变量。您可以使用 postext 插件。这个插件提供了额外的 API:setPostData()、setPostDataItem() 等。

于 2010-03-24T18:09:54.463 回答
1

id删除数据时与 POST 一起发送的值应与每一rowId行的值相对应。为此,您需要.jqGrid({在网格初始化时添加以下选项:

 xmlReader: {
            root:"xml", // Varies depending upon the structure of your XML
            row:"item", // Varies depending upon the structure of your XML
            repeatitems:false,
            id:"rowID"
}, 

root和的值row将根据您的 XML 的命名方式而有所不同。前面的示例将解析以下 XML:

<xml>
 <item>
  <rowId>1</rowId>
  ...
 </item>
</xml>

这有帮助吗?

于 2010-03-24T17:32:32.277 回答