How to use repeater and check boxes with a list
Hello,
I want to have a varying numer of check boxes that shall be generated automaticly from a list without thingworx.
So I dropped a repeater in the 2D Canvas and added a check box to it. I generated an application parameter called APCapitals and dragged it on the data panel of the repeater. So far so good.
How do I get the names displayed in the checkboxes?
Here is the code I used to bind a list to the App-Parameter:
$scope.app.params['APCapitals'] = [
{
display: "France",
value: "Paris"
},
{
display: "Italy",
value: "Rome"
},
{
display: "Spain",
value: "Madrid"
}
]
}
Greetings
whity

