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
RadioField and SelectField (with Checkbox widget) currently do not support an "Other" option. This is often required and should be fairly easy to implement:
Provide alternate widgets that append a text field with an "Other" label at the bottom of the list, using the same name value (with '-other' suffixed) so that the contents of the field are submitted.
Use a sensible placeholder value in the radio/checkbox widget on the form to indicate to the field that the name-other field's value should be read. Perhaps just a blank string as anything else could potentially conflict with existing choices.
Provide alternate fields that don't strictly validate against the choices list and look in name-other for values.
The text was updated successfully, but these errors were encountered:
RadioField and SelectField (with Checkbox widget) currently do not support an "Other" option. This is often required and should be fairly easy to implement:
name
value (with'-other'
suffixed) so that the contents of the field are submitted.name-other
field's value should be read. Perhaps just a blank string as anything else could potentially conflict with existing choices.choices
list and look inname-other
for values.The text was updated successfully, but these errors were encountered: