I have a View (Accounts) with a SelectableList (Single select).
Tapping an item in that list (this is an Event) triggers a workflow that opens an instance of the same View (Accounts) in Stack mode, passing the value of the selected item from the first view as a Property.
In the second (stacked) View, a conditional (triggered by the property not being empty) changes the Choices of the SelectableList to a different list of items (Accounts owned by the Account selected in the first view).
Tapping items in the Selectable List on the stacked view causes the display of the list items to change (indicating that the UI clearly knows a selection has been tapped) but the Event doesn’t fire.
Other than making a completely separate view (tested, and it works, but not ideal since I don’t know how deep the user will drill down) how do I get the Event to fire?