- 注册时间
- 2023-6-19
- 最后登录
- 2024-7-17
- 阅读权限
- 10
- 积分
- 75
- 精华
- 0
- 帖子
- 4
|
你好,就是表格编辑完成后调用后台接口刷新表格,但是tab切换到下一个单元格编辑,会使用上一次表格的数据,怎么解决,谢谢。
grid.on("cellendedit",function (e){
var item =slpardsj.find(v=>v.sl === e.field);
if (e.field === "memo"){
var row = mini.clone(e.row)
updateRow([row])
}
else if (e.field === "psrksj"){
var row = mini.clone(e.row)
row.psrksj = mini.formatDate(row.psrksj,"yyyy-MM-dd")
updateRow([row])
}
})
function updateRow(row){
mini.mask({
el: document.body,
cls: 'mini-mask-loading',
html: '请稍候,数据加载中...'
});
$.ajax({
type: 'post',
dataType: 'json',
sync:false,
contentType:"application/json",
data: JSON.stringify(row),
success: function (res) {
if (res.state ===0){
grid.reload()
}else {
mini.alert(res.message)
}
},
})
}
|
|