Hi Conrad,
I can find two issues in your code.
- Your shortdatamodel JSON is not having options in a array []. Aggregation binding works with arrays. See below for example of the data
- When using binding with leading "/", it points to the root of the model. You should not use "/" in aggregation binding loops. Use "{option/image}" instead.
Examples:
1. Example json data:
"short": [
{
"option": {
"optionName": "option1", "id": "001"..., "labeltext": "Test Item 1",...
}
},
{
"option": {...
}
}
]
2. Aggregation binding:
<Label id... text="{option/image}"
Regards,
Kimmo