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 |
Item1 | 🔘 |
Item2 | 🔘 |
Item3 | 🔘 |
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.