Hi,
I’m in a real bind and hope someone can help. I’ve seen partial answers to this, but none that work fully.
I have a form that contains both 1 radio group of 2 options, and 1 checkbox group of 6 options. When submitting the form, the results are to be written in a CSV file using a PHP script.
The PHP script merely takes all form variables and publishes them to a CSV file on the server.
For now, I’ve got all the text fields to work correctly but the radio group and checkboxes are either showing up as undefined or [object Object].
As an example, I have:
radioGroup:
() Female
() Male
What I need to do is assign a variable that contains the selected value of the chosen option (ie. either female or male). I’ve assigned these strings to the data property of each button in the Component Inspector. For some reason, it’s not working.
Can anyone help?