Skip to main content

Display Form - get value from selected radio button

Comments

1 comment

  • Permanently deleted user

    You can view a form's result in your browser console when testing in the sandbox, I recommend looking there to help you understand how to manipulate your forms.

     

    It sounds like what you need is to access the values after the form has submitted, yes? If so, then these check values are accessible in the form's "state" property, and you can access them with "$[your form].state.[your check group].items". This will return a collection of all check items, whether or not they are checked, so you'll need to run some logic on your collection to isolate the checked items.

    0

Please sign in to leave a comment.