newforms icon indicating copy to clipboard operation
newforms copied to clipboard

Isomorphic form-handling for React

Results 58 newforms issues
Sort by recently updated
recently updated
newest added

In your documentation, you show managing the formsets by storing the constructed form in the state. http://newforms.readthedocs.io/en/latest/formsets.html?highlight=formset ``` var ArticleFormSet = forms.FormSet.extend({form: Article}) var BookFormSet = forms.FormSet.extend({form: Book}) var PublicationManager...

Hello ! This project hasn't had a commit since 2015, is it still maintained ? Thanks !

I wonder why is date/date-time input a simple text input? Shouldn't it be a proper input type so the browser can handle the input format? Aside from that what would...

Getting an error of `Can't remove a form when there are no extra forms` when I try to remove a form in a formset that is populated with initial data....

As the new react version made the following two changes 1) Accessing PropTypes via the main React package is deprecated. and we should Use the prop-types package from npm instead....

I couldn't find how to disable options in ChoiceField. ``` js let stages = [ [1, 'First'], [2, 'Second'], [3, 'Third'], [4, 'Fourth'], [5, 'Fifth'] ]; ``` I want 2-5...

Ex: override message ``` const LoginForm = forms.Form.extend({ email: forms.EmailField({validators: [EmailValidator({message:'my customize email invalid msg'})] }), password: forms.CharField({widget: forms.PasswordInput}) } ) ```

Hi, I am using formUpdate to update form fields from an **ajax** source. Although the update works and the data appears as value of the inputs the fields are displayed...

I'm a novice backend developer tasked with making a checkbox that toggles a boolean value in the DB when checked or unchecked. The form I'm modifying uses NewForms and when...