Selectable list in stacked view - selection event not firing

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?

Most likely the click-event is bound to the original View instance; change the trigger to a “value changed” event or add the click workflow on the stacked view instance so the topmost SelectableList fires a workflow when selection changes.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.