django-formset icon indicating copy to clipboard operation
django-formset copied to clipboard

The missing widgets and form manipulation library for Django

Results 36 django-formset issues
Sort by recently updated
recently updated
newest added

I have the following form. forms.py ``` class PersonForm(forms.Form): name = fields.CharField() text = fields.CharField(widget=RichTextarea()) ``` which is rendered using: urls.py ``` path( "test_form/", FormView.as_view( form_class=PersonForm, template_name="test_form/test_form.html", success_url="/test_form/", ), ),...

Hello, I'm using the following snippet on my site to enable google translate: ```html function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'el', includedLanguages: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element'); } ``` Now,...

bug

![image](https://github.com/jrief/django-formset/assets/108730100/2d53ab3e-9f4c-4b54-92ff-4a46c6e83d90)

bug

I'm having issues rendering radio buttons if I create a new sibling. Example of radio button without selection yet: ![image](https://github.com/jrief/django-formset/assets/29529072/21b6d832-de5c-4166-868f-7d66a3e1aff9) After I added a new sibling Rendered radio button after...

question

The appearance and the function of the editor are so far already very good. The following changes seem to be easily possible: - Headline to h4 - Regroup elements and...

Content flows out of the bottom of the textarea. ![richtext_overflow](https://user-images.githubusercontent.com/10028803/235091560-8aa3ca30-f0a3-4ec6-afab-e9cd1a4b4ae5.png)

I've created a search form where you the user can enter search criteria and when they hit submit, the search results would, ideally, appear below the form. I'm using FormCollectionView...

Many sites need to prevent misuse by bots, and this is often accomplished with Google reCAPTCHA. The package [django-recaptcha](https://pypi.org/project/django-recaptcha/) allows this to be integrated into a Django form. Unfortunately, at...

A moved Selectize widget loses its borders after being dropped. (I tried only Bootstrap and Default). ![image](https://user-images.githubusercontent.com/7414504/225600366-4af51c25-f7c4-4f58-bc17-93b3f4d168ee.png) _Originally posted by @gumish in https://github.com/jrief/django-formset/issues/38#issuecomment-1471761232_

bug

The button actions `scrollToError()` does not scroll to an error of type collection error.

enhancement