ExtJS4:如何在 DnD 插件中定义 DnD 对象方法

发布于 2024-12-08 12:49:19 字数 234 浏览 2 评论 0原文

我正在开发一个带有从网格拖动到树并使用gridviewdragdrop和treeviewdragdrop插件的页面。

一切正常,但我真的不需要拖动节点,只需要获取拖动数据和放置数据,所以我想停止放置操作

我在 Ext.dd.DropTarget 中找到了 notifyDrop 方法,但不知道如何在插件配置中定义它。有人帮忙吗?多谢!

I am working on a page with Drag from Grid to Tree and using gridviewdragdrop and treeviewdragdrop plugin.

Everything works fine, but I don't really need to drag node, just need get the dragdata and dropdata, so I want to stop the drop action.

I found notifyDrop method in Ext.dd.DropTarget but don't know how to define that in plugin config. Anyone help? Thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

破晓 2024-12-15 12:49:19

你可以使用 beforedrop 事件,做你的事情,在事件结束时只需 return false; 在那里,这样你就不会完成放置,这就是我的意思对我的一个特殊情况进行处理。

you can use the beforedrop event, do your thing and at the end of the event just return false; in there, that way you will not complete the drop, that's what I do to a special case that I have.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文