gpt4 book ai didi

kendo-ui - 如何在使用 ODATA 类型的 KendoUI Grid 更新数据之前要求确认?

转载 作者:行者123 更新时间:2023-12-04 20:30:54 24 4
gpt4 key购买 nike

当我单击剑道网格编辑弹出表单的更新按钮时,我需要请求确认(确认对话框)。问题是使用 ODATA,我指定 kendoGridConfiguration.dataSource.transport.options.update.url ,我不能引入任何异步逻辑作为确认消息。你能帮助我吗?

如果我想使用 odata 确认从网格中删除元素,也会发生同样的情况。

谢谢!

最佳答案

我创建了一个 DEMO 在这里,在更新记录之前会要求用户确认,并且只有在用户同意的情况下才会编辑记录。

我绑定(bind)了save网格事件并添加代码以在编辑操作继续之前要求确认。

这是来自 DEMO 的代码。

.....
.......
//On click of POPUP form Update button
save: function(e) {
//check if the row is being edited and not newly added
if (! e.model.isNew())
{
if (! confirm("Are you really sure that you want to update the data ?"))
{
//In the confirm box, if the user clicks no or cancel, then do not proceed with the updation of record
e.preventDefault();
}
}
}
.......
.....

关于kendo-ui - 如何在使用 ODATA 类型的 KendoUI Grid 更新数据之前要求确认?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46729998/

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