Displaying What User Selected in Dropdown

i want the user to select multiple options from a dropdown and display what he has selected in this dropdown below this component, how can i go about doing this?

1 Like

Use something like a Text or Hint component, and configure it to use the same column as the target of the Choice component.

3 Likes

what if my source is from the contacts table which display the list of contacts that can be selected from the dropdown and i am writing to another column in another table!

1 Like

The source of the choice component doesn’t matter here. What matters is where you are writing to.

Reread Darren’s response carefully and apply, it should work fine.

2 Likes

I usually always have 2 choice components writing to the same column. One is a drop down and the other one has a chips style also writing to the same column and reading from the same source but filtering to only the selected ones.

something like the image below. When the user selects countries to filter. They can see it below and also remove any selections they don’t want.

2 Likes

in the choice filter to show only the options included in the array of the first choice selections

1 Like