Hello,
Based on the wireframe, I assume that the user clicks on an item to select it (allowing for multiple selections) and then clicks a button to proceed. Please let me know if my understanding is incorrect.
In this scenario, you can create a custom state on the page, such as “my-custom-list,” which will hold a list of the selected items.
When the user clicks on an item, you can add a workflow to either add or remove that item from the custom state:
- Adding: Set the state to update “my-custom-list” by adding the selected item from the parent group.
- Removing: Set the state to update “my-custom-list” by removing the selected item from the parent group.
Additionally, you can modify the user interface to indicate whether an item is selected. For example, you could change the border color when “my-custom-list” contains the item from the parent group.
When the user clicks the button, you can schedule an API workflow on a list to process the list of selected items.