禁用 Flex 中的数据网格选择
我有一个在 Spark 数据网格中显示的数据数组列表。
一旦我选择一个同上并单击与数据网格链接的按钮,它就会在屏幕上添加一个面板。我想禁用此选择,即告诉该项目面板已被添加。有什么想法我该怎么做?
此致
i have an array list of data which i am showing in spark data grid.
once i select an idem and click on a button that i have linked with datagrid it adds a panel on screen. I want to disable this selection i-e to tell that this item panel have already been added. Any ideas how can i do that?
best Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 this.contains(child:DisplayObject) 确定指定的显示对象是 DisplayObjectContainer 实例的子级还是实例本身。搜索包括整个显示列表,其中包括此 DisplayObjectContainer 实例。孙子、曾孙等等都返回 true。
Try
this.contains(child:DisplayObject)
It Determines whether the specified display object is a child of the DisplayObjectContainer instance or the instance itself. The search includes the entire display list including this DisplayObjectContainer instance. Grandchildren, great-grandchildren, and so on each return true.我认为数据网格上有一个
.disable()
函数,或者您可以使用return false;
这样它就不会继续。I think there's a
.disable()
function on datagrids, or you can usereturn false;
so that it won't proceed.