在flex中删除DragManager.acceptDragDrop()
DragManager.acceptDragDrop() 是否有任何相反的方法,例如 DragManager.removeDragDrop() 可以在 DragExit 事件中处理。任何想法..
Is there any opposite method for DragManager.acceptDragDrop(),like DragManager.removeDragDrop() which can be handled in dragExit event.any ideas..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与此相反的
是:
或者根本不调用
DragManager.acceptDragDrop
,在这里您可以阅读以下内容:The opposite of this:
is this:
Or just not call
DragManager.acceptDragDrop
at all, here you can read this:实际上我也有同样的问题,你只需要在dragExit()上做这样的事情,以防止处理dropExit事件:event.preventDefault();这会停止事件的传播并处理 dropDrag。
actually I had the same problem, You just have to do on dragExit() something like this, to prevent handling dropExit event: event.preventDefault(); That stops propagation of the event and handling dropDrag.