gpt4 book ai didi

popup - 为什么点击更新后弹出剑道没有关闭?

转载 作者:行者123 更新时间:2023-12-04 02:48:55 25 4
gpt4 key购买 nike

当弹出窗口打开并单击更新时,窗口不会关闭

我希望在单击更新时关闭窗口

jsfiddle code

按钮更新码

save: function (e) {

$.ajax({

url: '/api/apdevice',
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(e.model),

success: function (data) {
alert('yes');

},

error: function (data) {
alert('no');
}

});
}

最佳答案

您需要告诉网格在成功或错误后要做什么。查看 grid methods .在这个例子中,我使用了 refreshcancelRow .

save: function (e) {
var that = this;
$.ajax({

url: '/api/apdevice',
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(e.model),
success: function (data) {
alert('yes');
that.refresh();
},

error: function (data) {
alert('no');
that.cancelRow();
}

});
}

这是一些更新的 fiddle :
  • Simulated save with ajax error
  • Simulated save with ajax success
  • 关于popup - 为什么点击更新后弹出剑道没有关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18170630/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com