Saving Form Field Checkbox

What are you trying to do? (please be as specific as possible and include relevant screenshots, code snippets, and reproduction steps)

I am trying to create a form which has a form field question where the user can select multiple options through checkbox
I have created an example

I want to know how can i save the values of selected options through form value.

Basically for the form field key, I want to save the values of selected options

What have you tried so far? (please link relevant docs and other forum posts)

Relevant links:

1 Like

Hi, you should consider using either Checkbox Group or Radio Group to wrap your Checkbox repetition. This way, the state is going to be managed by the group component, allowing you to access the value of what is selected under the group.

I have tried checkbox Group. There is an Issue with checkbox group. When you select any checkbox inside checkbox group, it selects all the checkbox. Also, the form value doesn’t show the selected values. Could you please check on this

Digging into forms, I have come to understand (or just experience) that customizable components’data like Checkbox Group are not included in form value, as I described here: How can I customize form fields design with out disabling simplified? - #4 by jay-dee

So far I have found no way to turn the value of a form field checkbox, which is boolean, true or false, into a text data that could be included in form value. Form value does not seem to be modifiable or accessible from form fields interactions.