我的数据网格的数据提供程序(ArrayCollection)由具有ByteArray(int)字段的对象组成。如何在不转换数据提供程序的情况下将数据字段显示为int?
答案 0 :(得分:0)
不太确定,但为了在datagrid中显示类似的内容我会这样做:
<mx:itemRenderer>
<mx:Component>
<mx:Label
text="{ ( data.yourByteArray.toString()) }"
textDecoration="none" <!-- other props -->
/>
</mx:Component>
</mx:itemRenderer>