Binding to Text Field in a specific instance of a Flex Repeater

I have a Flex Repeater with a template containing a label and a text field. I want to automatically populate the text in the Text Field by default when the view is opened. In the picture below, I have created a binding for the value of the Text Field in the Flex Repeater component but this isn't working.

Any thoughts?

Is that text component's text property correctly bound to its view's value property?

2 Likes

Make sure the text property of the Text Field in that instanced view is bound to view.params.value.

A quick note about flex repeaters: If the instances are not generated dynamically, there little to no use for a repeater (imo). You could just as well drop the view used by the repeater in a container and get rid of a layer.

1 Like