I have a form where I used HTML to add three radio buttons with extra wording and formatting. However, whatever the user selected, does not come through on the completed form. Is there something I can add to the html to retain the selection?
Discussion
Discussion
If this is with the custom HTML section the form will not save what is selected with that. What you would need to do is save the selection to a hidden form field and then auto select the radio button once the form loads. I would just suggest using the native radio button field in forms and then just use CSS to customize the look. In this case you would have the block of text before and after the radio buttons in a custom HTML field.
Thanks Cristobal.
Do you know if it is possible to use the native radio buttons AND have the text in between the 2nd and 3rd choice? That was were I was stuck before deciding on the Custom HTML radio buttons.
I don't believe there is. You probably could use JavaScript to have the text inserted however I would look into seeing if it is all right to have the text below the last radio button.