Get values out of an flex repeater

Hi,

How do I get a value from a specific numeric entry field component that’s inside of a flex repeater?
I’d like to take that value and store it in a database through scripting.
This post is similar to: Getting A Value From A Template In A Template Repeater.

I have found the solution to the problem myself.
I changed the return format of the query to json.
Because the return value is json i can access the data like:
Data = self.getSibling (‘FlexRepeater’). Props.instances [0] .Text

2 Likes