jqgrid,如何在删除行之前POST字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqgrid,如何在删除行之前POST字段相关的知识,希望对你有一定的参考价值。
我需要知道如何在jqgrid中删除之前发送字段,添加很容易我有一个脚本,但是对于删除我不能。
这里添加一个示例:
{//add
recreateForm:true,
jqModal:true,
reloadAfterSubmit:true,
savekey: [true,13],
closeOnEscape:true,
closeAfterAdd:true,
height:150,
width:450,
url:"process/jqgridAnaOT.php",
addCaption : "Asigancion de Analista",
beforeSubmit:function(postdata){
var dataString = $("#formid").serialize();
var numReg = document.getElementById('OT').value;
var assign = document.getElementById('Siglas').value;
var txt_open = document.getElementById('txt_open2').value;
if(txt_open==0){
jAlert('La orden se encuentra cerrada, No es posible modificar datos',titulo);
return false;
} else { ...
} },
如你所见,添加我们有一个表单,我们可以操作数据,函数beforeSubmit允许我们知道表单中的数据,但是当我们删除一行时它不存在于表单中,如果不是来自jqgrid的消息。
答案
删除行时会发生类似的事件。如果您使用Guriddo jqGrid,您可能需要查看documentation here
另一答案
我找到了解决方案
$(function(){
$("#list").jqGrid({
colNames:[...],
colModel :[...],
etc...
});
$("#list").jqGrid('navGrid','#pager',
{add:true,edit:false,del:true,search:false,refresh:true},
{//edit},
{//add},
{//del
code....
}
);
});
在这个方法中我默认使用jqgrid的接口,它最清楚地使用,使用我调整我的代码的解决方案,它工作正常。
{//del
recreateForm:true,
jqModal:true,
reloadAfterSubmit:true,
savekey: [true,13],
closeOnEscape:true,
closeAfterAdd:true,
height:130,
width:450,
url:'process/jqgridAnaOT.php?pid="<?=$strPid?>"',
onclickSubmit: function(params){
var txt_open = document.getElementById('txt_open2').value;
var gr = jQuery("#list").jqGrid('getGridParam','selrow');
var val = jQuery('#list').jqGrid('getCell',gr,'Siglas');
if(txt_open==0){
jAlert('La orden se encuentra cerrada, No es posible modificar datos',titulo);
return false;
}
else {
return {Siglas:val};
}
}
} // fin del
我希望这段代码对某人有用
以上是关于jqgrid,如何在删除行之前POST字段的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 jquery 从 asp.net 视图模型中动态删除行而不删除集合中的其余下一个对象
如何在 laravel post 方法中从 ajax 中删除 403 错误