Can this be done somehow?
<Text Value="{Property self.SelectedOption}" />
<Each Items="{options}">
<Panel Padding="80,10,0,10">
<Clicked>
<Set self.SelectedOption.Value="{title}" />
</Clicked>
<Text Value="{title}" />
</Panel>
</Each>
When one of the Panels inside Each loop is clicked, I want to get the title of that clicked element and change the Text element on the top outside the loop. But instead of the title property, I get “{title}” set.
Without JS, can this be done in UX?