You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a checkbox is indicated by "type": "button", and "options": ["Yes", "Off"]
a set of radio options are indicated by "type": "button" and 2 or more "options" in addition to "Off"
a text field is "type": "text"
dropdowns and listboxes are both "type": "choice"
Perhaps for checkboxes and radio buttons, they should be "type": "checkbox" and "type": "radio" since those two types are easy to infer from the field data output.
The text was updated successfully, but these errors were encountered:
Currently:
"type": "button"
, and"options": ["Yes", "Off"]
"type": "button"
and 2 or more"options"
in addition to"Off"
"type": "text"
"type": "choice"
Perhaps for checkboxes and radio buttons, they should be
"type": "checkbox"
and"type": "radio"
since those two types are easy to infer from the field data output.The text was updated successfully, but these errors were encountered: