FLEX

[FLEX] List의 내용에 toolTip 생성하는 itemRenderer

단순대왕 2008. 10. 28. 11:49
<mx:Grid x="10" y="10" width="408" height="178">
<mx:GridRow width="100%" height="100%">
<mx:GridItem width="100%" height="100%">
<mx:Text text="Source"/>
</mx:GridItem>
<mx:GridItem width="100%" height="100%">
<mx:List id="id_list_source" height="100%" width="150" editable="false">
<mx:itemRenderer>
<mx:Component>
<mx:Label text="{data.col1}"/>  
</mx:Component>
</mx:itemRenderer>
</mx:List>
</mx:GridItem>
</mx:GridRow>
</mx:Grid>