I mean
< StyleName="importnr">
Hello,
I have a datagrid with three colums:
<mx:DataGrid id="dgImportSearchResults" click="doImportSelected();"
width="250" x="0" bottom="0" top="225">
<mx:columns>
<mx:DataGridColumn headerText="Nr" width="60"
itemRenderer="renderer_dg_importstatus" />
<mx:DataGridColumn headerText="Destination"
dataField="destination"/>
<mx:DataGridColumn headerText="Bedrijf" dataField="supplier"/>
</mx:columns>
</mx:DataGrid>
As you can see the first one uses a renderer to show different things
within the same cell.
This is the code for the renderer:
<?xml version="1.0"?>
<mx:HBox xmlns:mx="http://www.adobe.com/2006/mxml"
horizontalAlign="center" horizontalGap="5">
<mx:VBox id="importcolor" height="100%" width="10"
backgroundColor="{data.showcolor}" />
<mx:Text id="importnr" width="100%" selectable="false"
text="{data.importnr}" />
</mx:HBox>
The importnr is shown ok, but the backgroundColor doesn't do a thing
... it just stays black although the datafield showcolor contains
#ff0000 or #00ff00.
What am I doing wrong ?
Thanks,
Frank
--
----------------------------
Igor Costa
www.igorcosta.com __._,_.___
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
![]()
SPONSORED LINKS
Web site design development Computer software development Software design and development Macromedia flex Software development best practice
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__,_._,___
- Re: [flexcoders] dynamic vbox backgroundcolor in renderer Igor Costa
Reply via email to

