Flex 4 - 单元格中带有按钮的 DataGrid
如何在数据网格的单元格中添加按钮控件?我希望数据网格中一列的每一行都有一个按钮。数据网格控制行不需要以任何方式进行选择。
How can I add a button control in cells of a datagrid? I'm looking to have a button in each row of one column in the datagrid. The datagrid control rows don't need to be selectable in any way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这真的很简单。只需为列定义一个自定义项目渲染器,
使用
data
引用该行的 dataprovider 对象,使用outerDocument
访问项目渲染器外部的方法。希望这有帮助!
It's really quite simple. Just define a custom item renderer for the column
use
data
to refer to the row's dataprovider object andouterDocument
to access methods outside of the item renderer.Hope this helps!
为此,请使用 Flex 4 控件 - 即。 Spark 使用 GridItemRenderer。
这里有很好的例子:
http://help.adobe .com/en_US/FlashPlatform/reference/actionscript/3/spark/components/gridClasses/GridItemRenderer.html#includeExamplesSummary
To do this with Flex 4 controls - ie. Spark use a GridItemRenderer.
There are very good examples here:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/gridClasses/GridItemRenderer.html#includeExamplesSummary