Hi Flexies,

Components within a repeater have IDs that are not document-scoped,
thus the following binding expression will only work once.

<mx:Repeater>
  <foo:Bar id="bar"/>
  <mx:Label text="{bar.bindableProperty}" />
</mx:Repeater>

I need a way to overcome this... so that the expression is valid for
the lifetime of the application.

I have tried to do things like

<mx:Label text={findBar(repeater.currentIndex).bindableProperty}/>

where findBar somehow uses the repeater index to return a reference to
the desired instance of Bar.

Now, the latter doesn't work either... as the binding still only works once.

Any ideas??
I understand this is a current limitation, but are there any hacky
ways around it??

Perhaps using separate mx:Bindindg tags?
( hmm hadn't thought about that... will give it a try )

Thanks,
Aldo

-- 
::::: Aldo Bucchi :::::
mobile +56 9 8429 8300

Reply via email to