Comments on: Django generic AJAX form validation http://eikke.com/django-generic-ajax-form-validation/ 'cause this is what I do Tue, 04 Dec 2012 00:03:23 +0000 hourly 1 http://wordpress.org/?v=3.4.1 By: myspace quotes dude http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-25441 myspace quotes dude Sat, 04 Jul 2009 05:26:20 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-25441 Cool scripting... bit complex for me, but i'll figure it out! Cool scripting… bit complex for me, but i’ll figure it out!

]]>
By: Tim McDonald http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-25440 Tim McDonald Sat, 04 Jul 2009 05:25:19 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-25440 nice validation, first time i've set somthing like this up.. works well. Thank you. nice validation, first time i’ve set somthing like this up.. works well. Thank you.

]]>
By: name http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-7571 name Sun, 27 Jul 2008 18:17:40 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-7571 Smotri i y4is, Smotri i y4is,

]]>
By: name http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-7345 name Sat, 19 Jul 2008 10:44:47 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-7345 , ,

]]>
By: assaxy http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-3674 assaxy Tue, 20 May 2008 03:40:53 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-3674 By: Nicolas http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-163 Nicolas Sun, 20 Jan 2008 01:26:49 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-163 I started the above mentioned project, see http://eikke.com/tag/django-validation/ Enjoy! I started the above mentioned project, see http://eikke.com/tag/django-validation/ Enjoy!

]]>
By: Nicolas http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-34 Nicolas Thu, 03 Jan 2008 18:54:05 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-34 You're right there. A really nice project would be to add client-side form validation code generation to Django's newforms, so I could do something like: <pre>$(document).ready(function() { $("#myform").submit(function(form) { {% validate_form form myproject.myapp.forms.FooForm %} }); });</pre> You’re right there. A really nice project would be to add client-side form validation code generation to Django’s newforms, so I could do something like:

$(document).ready(function() {
    $("#myform").submit(function(form) {
        {% validate_form form myproject.myapp.forms.FooForm %}
    });
});
]]>
By: Yoan http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-33 Yoan Thu, 03 Jan 2008 18:48:45 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-33 You're right about the container, sorry. You shouldn't load the server for testing a form anyway, reactivity is important so use Ajax carefully ;-) You’re right about the container, sorry.

You shouldn’t load the server for testing a form anyway, reactivity is important so use Ajax carefully ;-)

]]>
By: Nicolas http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-32 Nicolas Thu, 03 Jan 2008 11:14:59 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-32 That's up to the client side developer I guess, I must admit I'm not that good at JavaScript/DOM coding. Clicking many times is not an issue as the existing container is re-used if it already exists. The BR is there to make things look good, I don't now whether there's better markup... Thanks for the constructive comment :-) That’s up to the client side developer I guess, I must admit I’m not that good at JavaScript/DOM coding.

Clicking many times is not an issue as the existing container is re-used if it already exists.

The BR is there to make things look good, I don’t now whether there’s better markup…

Thanks for the constructive comment :-)

]]>
By: Yoan http://eikke.com/django-generic-ajax-form-validation/comment-page-1/#comment-31 Yoan Thu, 03 Jan 2008 10:57:04 +0000 http://eikke.com/django-generic-ajax-form-validation/#comment-31 I'm wondering what is happening when you are clicking many times. $(".error").fadeOut("slow"); This is a bit "light", you should remove them from the DOM after fading them out. And please remove the br you are using or put it the error class name too. By the way, it's a nice and useful idea. Cheers, I’m wondering what is happening when you are clicking many times.

$(“.error”).fadeOut(“slow”);

This is a bit “light”, you should remove them from the DOM after fading them out. And please remove the br you are using or put it the error class name too.

By the way, it’s a nice and useful idea.

Cheers,

]]>