如何将附加后数据传递到添加记录函数 - JQGrid - MVC。网
我正在 MVC 项目中使用 JQGrid 插件。我试图避免使用“会话”。我已经能够使用 JQGrid 中的序列化数据方法将额外的后数据传递到我的编辑和删除函数中。
EG
serializeEditData: function (postdata)
{
var rowdata = jQuery('#gridId').getRowData(postdata.id);
return {id: postdata.id, oper: postdata.oper, SomeExtraData: $('#extradata').val()};
}
但是,似乎没有 serializeAddData 函数。是否有另一种方法可以在发送之前更改 add 方法的发布数据?
I am using the JQGrid plugin on an MVC project. I am trying to avoid using 'Session'. I have been able to pass extra postdata into my edit and delete functions, using the serializedata methods from JQGrid.
E.G.
serializeEditData: function (postdata)
{
var rowdata = jQuery('#gridId').getRowData(postdata.id);
return {id: postdata.id, oper: postdata.oper, SomeExtraData: $('#extradata').val()};
}
However, there doesn't appear to be a serializeAddData function. Is there another way to alter the post data for the add method before it is sent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种方法 editGridRow 实现“编辑”和“添加”对话框的表单编辑。因此,相同的事件 han`ler serializeEditData 可以是在两种情况下都使用。例如,
/ );
通常,如果您需要将所有发布的数据转换为另一种格式(例如进行 JSON 序列化),
serializeEditData
事件非常实用。为了能够传递额外的 postdata 参数,您可以使用editData
参数,它的含义与 jqGrid 的postData
参数相同:或者更好的方式(参见 这个答案 关于函数作为
postData
属性的使用):There are one method editGridRow which implement form editing for both "Edit" and "Add" dialogs. So the same event han`ler serializeEditData can be used in both cases. For example,
/ );
Typically
serializeEditData
event is very practical if you need convert all the posted data in another format, for example to make JSON serialization. To be able to pass extra postdata parameters you can useeditData
parameter instead which has the same meaning likepostData
parameter of jqGrid:or better in this way (see this answer about the usage of functions as the property of
postData
):