I have a list box interface tool, where I populated a list of values available for user to select. The selection performs Filtering operation based on the values selected by the user. However, against each value I also need a Radio button/Check box interface tool where if checked it will declare a new status field (Approved or Rejected) for the filtered values based on list box selection.
I want my interface designer to look like this:
List box values | Radio Button or Check Box |
![]() | 🔘 |
![]() | 🔘 |
![]() | 🔘 |
The operation should be:
Filter the data based on list box values selection. Then add a new column in the filtered data with values either as "approved" or "rejected" based on radio button / check box selection.
Hi, @amitupadhyay is your list dynamic? If not, you could use check boxes to create your own list to end up with an interface like this:
Which you can then use in an app a bit like this:
Which (with the above set up) would give the following inputs and outputs:
->
Hope that's useful
Ollie
Hello Ollie,
Thank for this solution. Unfortunately, my list box input is dynamic and gets updated based on previous chained app. Is there any way to implement this in case the list is dynamic?
Hey @amitupadhyay how's about this:
I don't think you can get the lists next to each other and dynamic as well, so I went for 2 list boxes one for selecting and one for approving
This set up creates this output: