如何禁用 ExtGWT 中的拖放功能
我在 ExtGWT 中使用 EditorGrid。目前 DnD 功能已启用。我想在特定情况下禁用。请帮助我如何实现这一目标。
谢谢!
I am using EditorGrid in ExtGWT. currently DnD feature is enabled. i want desable in particular context. please help me how to achieve this.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用 DropTarget 的disable() 或 DragSource 的disable() 方法来禁用拖动或放置。
您还可以更改 DropTarget 或 DragSource 的“group”字段(使用 setGroup)以使它们之间不匹配,从而禁用 DnD。
You can call DropTarget's disable() OR DragSource's disable() method to either disable Dragging OR Dropping.
You can also change the "group" field of DropTarget or DragSource (using setGroup) to have a mistmatch between both of them to disable DnD.