vote up 0 vote down star
1

I am trying to turn labels red when they can no longer be added to a list because of size requirements. The renderer works but Flex creates a separate component. I can't think of any good way to get that value to the new component. Any ideas?

<mx:List... >

 <mx:itemRenderer>          
      <mx:Component>
         <comp:SetSizeLabel numIps="{data.numInSet}" remaining= "{remaining}"/>
      </mx:Component>
  </mx:itemRenderer>

flag

1 Answer

vote up 1 vote down check

You can use the outerDocument keyword to access the scope outside of the inline component. Look at Example

link|flag
Thanks, that was extremely helpful. – rmh15 Jul 29 at 17:45

Your Answer

Get an OpenID
or

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