jqgrid :在服务器端验证是否编辑行
我将 Jqgrid 与 MVC2 一起使用。看起来网格不关心服务器端验证,假设我们需要将数据保存到数据库并且插入数据时出现错误。
我们需要能够显示一条错误消息,指出在服务器级别进行编辑时出现错误,这可能吗?有什么例子/评论吗?
I am using Jqgrid with MVC2. It looks like the grid doesn't care for server side validation, say we need to save the data to Database and there is a error while inserting data.
We need to be able to show an error message saying there is error while edit at server level, is it like possible? Any examples/comments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您在出现验证错误或任何其他错误时,服务器返回错误 HTTP 代码(请参阅例如 此处了解更多信息)。在这种情况下,您应该使用 editRow 函数而不是
succesfunc
。这是共同的规则。所以我建议您定义 loadError 事件处理程序每个 jqGrid 从服务器获取任何数据。以同样的方式,您应该在表单的情况下使用 errorTextFormat编辑和 errorCell 在单元格编辑的情况下。I recommend you that the server return allays an error HTTP code in case of validation error or any other errors (see for example here for more information). In the case you should use
errorfunc
parameter of the editRow function and not thesuccesfunc
. It is the common rule. So I recommend you to define loadError event handler in every jqGrid which get any data from the server. In the same way you should use errorTextFormat in case of form editing and errorCell in case of cell editing.