gpt4 book ai didi

javascript - 删除行时jqgrid错误

转载 作者:行者123 更新时间:2023-11-30 06:00:47 25 4
gpt4 key购买 nike

我在 jquery jqgrid 上做了一些测试,但有问题:

jQuery("#navgrid").jqGrid(
"navGrid",
"#pagernav",
{}, //options
{}, // edit options
{}, // add options
{
afterSubmit : function(response, postdata)
{
if(response.responseText == 'success')
{
console.log(postdata);
alert('success and data should be changed')
console.log(postdata.id);
jQuery("#navgrid").delRowData(postdata.id);
}
else
{
alert('failed and data should not be changed');
}
return true;
},
reloadAfterSubmit: true
}, // del options
{} // search options
);

我在 firebug 上做了两个 console.log:

postdata => Object { oper="del", id="29"}
postdata.id => 29

然后我的 Firebug 出现了这样的错误:

postdata.split is not a function
toarr = postdata.split(",");

我想我已经遵循了这个方法: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods

最佳答案

看起来 triley 能够在这里解决它:

http://www.trirand.com/blog/?page_id=393/bugs/4-2-0-g-split-is-not-a-function-error/

我尝试了他的修复,它有效。

关于javascript - 删除行时jqgrid错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8737595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com