Liste viewer : action after selecting an element of list?

I want to know how to have activity after selecting an element of list ?

There is a block listviewer itemclick as in the image below:
listviewer_item_click
Do whatever you want to do within the block. Item is the selected Item. You can also reference the index of the selected item

1 Like

Yes! At a basic level, this is the logic to use with a list picker to make various actions happen

If item = X
Do this thing
Else if item = y
Do something else

1 Like