I've been digging into the razor templating. I see how data goes into the razor template. Is there an easy way to get data out of the template? Here is a scenario:
1. I pass a list of items into a razor template.
2. User selects one of the items in the razor template.
3. Is it possible to pass the selected value out of the razor template back into the app?
I am thinking that this is something like exposing a property in the razor template and then processing it via an event somewhere when it changes. Is that the correct direction to go on this? Thoughts?
Wally