如果编辑时出现错误,则防止恢复行
onSelectRow: function(id){
if(id && id!==lastSel){
jQuery(this).restoreRow(lastSel);
lastSel=id;
}
jQuery(this).editRow(id,true,null,
function(response, postdata){
var data = eval('(' + response.responseText + ')');
data.result.success ? alert('success') : alert('error')
});
}
在这种情况下,我可以处理错误,但在该行数据恢复之后。 问题是如果 data.result.success == false
,如何防止恢复行?
如果我通过模态框进行编辑,那么一切都可以。但在内联模式下则不然。
onSelectRow: function(id){
if(id && id!==lastSel){
jQuery(this).restoreRow(lastSel);
lastSel=id;
}
jQuery(this).editRow(id,true,null,
function(response, postdata){
var data = eval('(' + response.responseText + ')');
data.result.success ? alert('success') : alert('error')
});
}
In this case I can handle errors, but after this row data restored.
The question is how to prevent restoring row if data.result.success == false
?
If I edit through modal box, then all is ok. But in inline mode doesn't.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
editRow 函数具有以下参数:
您当前的代码使用仅
succesfunc
。重要的是,服务器返回一些 HTTP 状态代码 大于或等于 400。那么服务器响应将被 jQuery.ajax 和 jqGrid。要显示任何错误消息或在发生错误时执行任何其他操作,您应该使用 editRow 函数。还有一点小意见。您应该使用 jQuery.parseJSON 或
JSON.parse
而不是使用eval
。更新:我在这里回答您在评论中提出的问题。为什么使用
errorfunc
很重要,而不总是使用succesfunc
?有不同的原因。如果你把盐装进贴有糖标签的盒子里,可能会给你的厨房带来痛苦的后果。完全相同的是,如果错误使用editRow
的不同回调函数。我可以举一些例子:我写的关于处理错误的内容是一般规则。 jqGrid 定义了许多发生错误时的事件。例如网格填充的loadError,errorTextFormat 用于所有类型的表单编辑,errorCell 用于单元格编辑和 errorfunc 用于内联编辑。所有方法都基于以下事实:如果发生错误,服务器响应具有与错误相对应的 HTTP 状态代码(大于或等于 400)。
editRow function has the following parameters:
You current code use
succesfunc
only. It is important, that the server return some HTTP status code which are grater or equal to 400. Then the server response will be interpret as error by jQuery.ajax and jqGrid. To display any error message or for any other action in case of error you should use errorfunc parameter of the editRow function.One more small remark. You should use jQuery.parseJSON or
JSON.parse
instead of the usage ofeval
.UPDATED: I answer here on your questions from the comment. Why it is important to use
errorfunc
and not alwayssuccesfunc
? There are different reason. If you fill the box having the label sugar with the salt, it could has bitter consequences in your kitchen. Exactly the same is in case of wrong usage different callback functions of theeditRow
. I can give just some examples:What I wrote about the working with errors is the general rule. jqGrid defines many events in case of errors. For example loadError for the grid filling, errorTextFormat for all types of form editing, errorCell for the cell editing and errorfunc for inline editing. All the methods are based on the fact that in case of error the server response has the HTTP status code which corresponds the error (are grater or equal to 400).
我想修复相同的场景,我可以这样做:
在网格模型中:
I wanted to fix the same scenario and I could by doing:
And in grid model: