Anyone aware of a way of having a Group option for Checkboxes? Similarly to how it works for Radio Buttons. I want to have a question, with multiple selections as answers.
Once submitting the form, it’s just going to display as True or False, which isn’t ideal either for multiple selections. I’d rather it just stated the Group Name, and the values of the chosen field.
In HTML forms, checkboxes don’t have a grouping construction because each has an individual value to report. Similarly, Webflow’s email notification doesn’t have a way to consolidate those into a single value.
Your best approaches are probably:
Have the form processed by an automation or through a webhook, do your “checkbox aggregation” and generate your own custom notification.
It’s also possible to do that with client side, but it’s a bit hacky. You’d be modifying your form content and generating your aggregate fields before it’s submitted. However this would also work with Webflow’s standard notifications.