Flex:数据如何从DataGridColumn.itemToLabel传递到DataGrid.itemRenderer.set(data)?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://flexgeek.wordpress .com/2007/05/30/tutorial-using-same-itemrenderer-for-multiple-columns/
来自文章
“...我们必须实现 IDropInListItemRenderer 接口,它有两个方法。_listData
对象拥有属性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.
The _listData object holds the property columnIndex, which tells you which column does the itemRenderer belong to."