高级 DataGrid 中的拖放
我有一个高级数据网格,用于显示数据库中的行数,并且一行严格不允许拖动选项。有可能吗?请分享一个示例。
I have a Advanced DataGrid for displaying the number of rows from the Database and one row strictly should not allowed drag option. Is is possible? Please share one sample example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然这是可能的。将 DragEnter 处理程序添加到数据网格:
使用以下代码:
protected var _draggedItem:Object;
_draggedItem.property == true 是检查是否无法拖动项目。
Of course this is possible. Add a dragEnter Handler to your datagrid:
With the following code:
protected var _draggedItem:Object;
_draggedItem.property == true is the check, if an item can't be dragged.