如何在jqgrid中编辑失败时保留数据

时间:2014-11-06 09:52:10

标签: jqgrid jqgrid-formatter jqgrid-inlinenav

我通过格式化程序操作执行jqgrid编辑。当编辑验证在服务器中失败并且我向用户显示错误时,我希望保持编辑模式并保存用户输入的数据。 可能吗。请帮忙。

1 个答案:

答案 0 :(得分:1)

您应该使用内联编辑的restoreAfterError: false选项。我建议您通过更改内联编辑的默认值来设置选项:

$.extend($.jgrid.inlineEdit, {
    restoreAfterError: false
});

或者,您可以在restoreAfterError中设置formatoptions

formatter: "actions", formatoptions: {restoreAfterError: false, keys: true, ...}