I am trying to assign the view.custom.siteData object named property to my value label but i want to do it in a flex repeater style so on my next view will have multiple rows with each each sitedata object property as a header and same logic applying for the value on the label below that. I am unsure on what binding to assign to my label to keep this automated if anybody has any answers.
For context the following screenshots are how it should look but the data is different in these.
Labels show single lines of text. You need a repeater or a view canvas or perhaps even a table.
1 Like
The working example I showed above starts as singular labels, and in the screenshot below that makes use of the flex reperater which multiplies them labels by the amount of rows in the dataset tag they are getting their values from if that makes sense.
This is the script which is binded to the instances (on the working version), the main problem i am having is how can i apply a form of automated indirect tag binding to the property object in my first screenshot for the top label based on what ive shown. Hope this makes slightly more sense now
Use a table with a cell render view. The cell render view can take the tagpath column and perform indirect tag binding.
Got it working thanks Phil!