Flex:数据如何从DataGridColumn.itemToLabel传递到DataGrid.itemRenderer.set(data)?

发布于 2024-08-14 02:16:33 字数 494 浏览 5 评论 0原文

我有一个 DataGrid,其 dataProvider 是一个 int 数组的数组(每个数组具有不同的长度)。由于每一行都有可变的大小(并且我想显示所有数据),我决定 扩展DataGridColumn并覆盖itemToLabel函数以能够显示数据。问题是我还需要根据 int 值以不同的方式显示数据。

我相信唯一的解决方案是编写一个 itemRenderer,但 itemRenderer.set(data) 函数接收的唯一输入是整个 int 数组。我相信我需要 itemToLabel 返回的确切字符串或 itemRenderer 所在单元格的列索引(基本上执行与我在 itemToLabel 中实现的相同解析)。

我正在使用 Flex 3.4。感谢您的帮助。

I have a DataGrid whose dataProvider is an Array of int Arrays (each with different lengths). Since each row has variable size (and I want to display all the data), I decided to extend DataGridColumn and overwrite the itemToLabel function to be able to display the data. The problem is that I also need to display the data differently depending on the int value.

I believe the only solution is to write an itemRenderer, but the only input the itemRenderer.set(data) function receives is the entire int Array. I believe I need either the exact string returned by itemToLabel or the column index of the cell the itemRenderer is for (to basically do the same parsing I implemented in itemToLabel).

I am using Flex 3.4. Thanks for your help.

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

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

发布评论

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

评论(1

梦屿孤独相伴 2024-08-21 02:16:33

http://flexgeek.wordpress .com/2007/05/30/tutorial-using-same-itemrenderer-for-multiple-columns/

来自文章

“...我们必须实现 IDropInListItemRenderer 接口,它有两个方法。_listData

public function get listData():BaseListData
{
  return _listData;
}
public function set listData(value:BaseListData):void
{
  _listData = DataGridListData(value);
  invalidateProperties();
}

对象拥有属性columnIndex,它告诉你itemRenderer属于哪一列。”

http://flexgeek.wordpress.com/2007/05/30/tutorial-using-same-itemrenderer-for-multiple-columns/

From the article

"...we have to implement the interface IDropInListItemRenderer, which has two methods.

public function get listData():BaseListData
{
  return _listData;
}
public function set listData(value:BaseListData):void
{
  _listData = DataGridListData(value);
  invalidateProperties();
}

The _listData object holds the property columnIndex, which tells you which column does the itemRenderer belong to."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文