gpt4 book ai didi

javascript - 在 Kendo UI Treeview Drop 事件中确认

转载 作者:行者123 更新时间:2023-12-03 22:52:32 26 4
gpt4 key购买 nike

我正在尝试在 Kendo UI Treeview 中通过确认来实现拖放。我正在通过他们的 CDN 链接到最新版本的 Kendo 控件。

我的 Treeview 是使用以下代码创建的(为简洁起见,省略了数据源):

$("#treeview-left").kendoTreeView({
dragAndDrop: true,
dataSource: {....}
drop: onDrop,
});

function onDrop(e) {
var nodeText = this.text(e.sourceNode);
e.setValid(confirm("Sure you want to drop: " + nodeText));
}

如果我使用最新版本的 chrome 运行代码,那么一切都很好,但是使用 IE 或 Firefox,当您将鼠标悬停在第一个对话框上时,会显示第二个确认对话框。

jsfiddle: http://jsfiddle.net/KpEej/1/

我该如何解决这个问题,以便只显示一个确认。

最佳答案

有一个与 Kendo 事件和警报相关的错误。

您可以找到详细信息 here.

您应该丢失确认对话框并使用 jQuery 对话框。

关于javascript - 在 Kendo UI Treeview Drop 事件中确认,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20969573/

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