是否可以将itemrenderer放在DataGrid本身而不是datagridcolumn上?我只能找到datagridcolumn的例子。 我想在数据网格中的所有项目上使用通用的itemrenderer ...
答案 0 :(得分:3)
是。 (这是一个Flex 4示例,但3也是如此)
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768">
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
[Bindable] private var dp:ArrayCollection = new ArrayCollection([{far:"test",sight:"test"},{far:"test",sight:"test"},{far:"test",sight:"test"},{far:"test",sight:"test"}]);
]]>
</fx:Script>
<mx:DataGrid width="100%" height="100%" dataProvider="{dp}">
<mx:itemRenderer>
<fx:Component>
<mx:Label text="woot there it is"/>
</fx:Component>
</mx:itemRenderer>
</mx:DataGrid>
</s:Application>