Is it possible to pass data into an itemRenderer that is not apart of the
dataProvider. The component I am using as an does not seem to except
bindable data when it's used as an item Renderer.
coursedays and unittypes are both arrayCollections from remoteObjects.
The itemRender is using data. from coursedays. But I also want to
pass in the arrayCollection of unittypes. Is this the correct opproach?
<mx:HorizontalList id="days_hlist" useRollOver="false" width="980" height="570"
borderStyle="none" selectable="false" horizontalScrollPolicy="off" left="0"
dataProvider="{coursedays}">
<mx:itemRenderer>
<mx:Component>
<courseeditor:dayoutline unittypes="{unittypes}"/>
</mx:Component>
</mx:itemRenderer>
</mx:HorizontalList>