Flex 3 在数据网格中添加图像
如何将图像添加到数据网格中的列?
目前我的代码是
<mx:DataGridColumn dataField="image" headerText="Photo Image" editable="false">
<mx:itemRenderer>
<mx:Component>
<mx:HBox height="30" horizontalAlign="center">
<mx:Image source="{'assets/image.jpg'}"/>
</mx:HBox>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
WGere dataField =“image”是图片文件的名称。
How do i add a image to a column in the datagrid?
Currently my code is
<mx:DataGridColumn dataField="image" headerText="Photo Image" editable="false">
<mx:itemRenderer>
<mx:Component>
<mx:HBox height="30" horizontalAlign="center">
<mx:Image source="{'assets/image.jpg'}"/>
</mx:HBox>
</mx:Component>
</mx:itemRenderer>
</mx:DataGridColumn>
WGere the dataField = "image" is the name of the picture file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
见下文...假设“image”只有文件名,而不是“assets/”的路径
如果图像的完整路径确实存储在“image”中,则使用此
See below... assuming "image" only has the filename, and not the path of "assets/"
If the full path to the image is indeed stored in "image", then use this