Flex ByteArray数据字段

时间:2010-03-25 19:06:38

标签: flex datagrid bytearray

我的数据网格的数据提供程序(ArrayCollection)由具有ByteArray(int)字段的对象组成。如何在不转换数据提供程序的情况下将数据字段显示为int?

1 个答案:

答案 0 :(得分:0)

不太确定,但为了在datagrid中显示类似的内容我会这样做:

<mx:itemRenderer>
    <mx:Component>
        <mx:Label 
            text="{ ( data.yourByteArray.toString()) }" 
            textDecoration="none" <!-- other props -->
        />
    </mx:Component>
</mx:itemRenderer>