将图像添加到 Flex Datagrid

发布于 2024-10-19 10:50:14 字数 132 浏览 2 评论 0原文

我有一个数据网格,它已经从数据提供者获取数据,网格中有一个名为优先级的列。我想要做的是,如果列优先级包含高值,那么在我想要插入和图像的数据网格中的空列中,根据列优先级的值插入图像。

任何帮助将不胜感激。

谢谢 克里斯

I have a Datagrid that already gets its data from a data provider, there is a column in the grid called priority. What i want to do is if the column priority contains the value high then in an empty column in the datagrid i want to insert and image , the image being inserted depending on the value of the column priority.

Any help would be much appreciated.

thanks
Chris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自唱情﹋歌 2024-10-26 10:50:14

您可以使用 itemRenderer 来完成此操作。查看 此链接为例。这是另一个简单的例子:

<mx:DataGridColumn width="30" editable="false">
  <mx:itemRenderer>
    <fx:Component>
      <mx:Canvas horizontalScrollPolicy="off">
        <mx:Image id="myImage" x="11" source="{outerDocument.MyPriorityImage}" visible="{data.Priority > 50}" includeInLayout="{data.Priority > 50}"/>
      </mx:Canvas>
    </fx:Component>
  </mx:itemRenderer>
</mx:DataGridColumn>

You could do this using an itemRenderer. Check out this link for an example. Here's another quick example:

<mx:DataGridColumn width="30" editable="false">
  <mx:itemRenderer>
    <fx:Component>
      <mx:Canvas horizontalScrollPolicy="off">
        <mx:Image id="myImage" x="11" source="{outerDocument.MyPriorityImage}" visible="{data.Priority > 50}" includeInLayout="{data.Priority > 50}"/>
      </mx:Canvas>
    </fx:Component>
  </mx:itemRenderer>
</mx:DataGridColumn>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文