django-ajax-forms icon indicating copy to clipboard operation
django-ajax-forms copied to clipboard

Ajax Form Views that allows forms and their individual fields to be evaluated through Ajax calls

Results 2 django-ajax-forms issues
Sort by recently updated
recently updated
newest added

Hi, When you use Modelform and you have (auto_now_add=True) you have this error: TypeError: datetime.datetime(2013, 12, 4, 17, 23, 51, 893632, tzinfo=) is not JSON serializable For correct this: add...

I would like to save the form to appear: Saved successfully! ``` $(function() { $('#email-register-password').validate('{% url "email_password_register" %}', { type: 'p', fields: true, event: 'focusout', fieldSuccessCallback: function(field) { if(field.next("span").length ==...