Im working at a DataGrid which has a custom itemRenderer with a checkbox and a Label inside. Im struggling adding the the values from a xml to the wright label dynamically... how can I make the connection from the datagrid's dataProvider (a xml doc) to the label and the checkbox? My itemRenderer loks a following:

<mx:Component id="ChoiceRenderer">
<mx:HBox width="100%" height="100%" horizontalAlign="center" verticalAlign="middle" horizontalScrollPolicy="off">
    <mx:CheckBox/>
    <mx:Label  />
</mx:HBox>

Thanks for any hint! Markus

link|improve this question

63% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Given the XML

<a>
    <b>
    </b>
</a>

acces the contents of <b> e.g. by

<mx:Label text="{data.a.b}"/>
link|improve this answer
1  
Thanks, that did it! – Markus Mar 11 '10 at 15:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.