We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm having issues rendering radio buttons if I create a new sibling.
Example of radio button without selection yet:
After I added a new sibling
Rendered radio button after creating new sibling
here's a snippet of the form and form collection
# BaseModelForm inherits forms.ModelForm class MyForm(BaseModelForm): ... is_retired = forms.ChoiceField(required=False, widget=forms.RadioSelect, label='Is retired?', choices=RadioButtonChoices.choices) ... # BaseFormCollection inherits formset.collection.FormCollection class MyFormCollection(BaseFormCollection): ... my_form = MyForm() min_siblings = 1 ...
The text was updated successfully, but these errors were encountered:
attempt to reproduce #91
e4a7302
My attempt to reproduce #91. All radio buttons however are rendered as expected.
just attempted to reproduce this bug but in my case all radio buttons are rendered correctly.
Please check out https://github.com/jrief/django-formset/tree/reproduce-issue-91 and rebuild the project.
Then run the example on http://localhost:8000/bootstrap/contact
Sorry, something went wrong.
No branches or pull requests
I'm having issues rendering radio buttons if I create a new sibling.
Example of radio button without selection yet:
After I added a new sibling
Rendered radio button after creating new sibling
here's a snippet of the form and form collection
The text was updated successfully, but these errors were encountered: