I want to create a group for checkboxes (like the radio button option) so i can have several sections in my form where you need to check one ou multiples boxes.
Also it would be much easier to have the answer in only one cell in the “form” tab instead of those multiples cells with “true” or “false”.
Do any of you have the solution to do this?
Thx in advance
I can’t share the link, this is my company’s website and we don’t want to let any informations out.
In my form, I have a single question which offers a checkbox response. I want that one, many or no checkboxes be checked, and that they are all recorded in the same response field in the data set.
I was really surprised that this function is not default on Webflow. It shouldn’t take a big effort to have group settings for the form elements. It does not make any sense for checkboxes to have “settings” individually.
Webflow, we need a solution to this issue, similar to the select field, where you can easily add the items and the setting is set to the whole group.
I have checked a few resources online, but I don’t want to embed DIY.
Hey guys, I don’t know if it is still relevant but I figured out if you name the checkboxes that should be grouped all the same with an empty array bracket right after, they will be grouped. This does not work with the normal Webflow GET method for forms but if you use a POST method and a webhook with for example Make.com it worked perfectly.
So instead of naming all the checkboxes like this:
service_1
service_2
service_3
and so on…
You would now just name it like this: service[] for all of the checkboxes that should be grouped. The data will then arrive in an array format.
@julian_vierless’s solution is great, however this will not store the form submissions in Webflow’s back-end AFAIK. My solution was to inject some custom code to listen for form submissions and concatenate the results into a plain hidden text field.