Winston Chen
Winston Chen

Reputation: 6879

Is there any recommended ajax form code generation library or app?

Ajax froms are increasing becoming the industry standard. More and more frameworks like handling it natively, for example scala lift or grails.

Is there any ajax automation library in django that can generate ajax froms like this: http://simply.liftweb.net/index-4.8.html ?

Upvotes: 3

Views: 124

Answers (1)

migajek
migajek

Reputation: 8614

I don't really know what is the "AJAX form" you are referring to as the forms are simply static HTML elements. My guess is you might be thinking of ajax form validation.

In this case the static HTML code generated by Django forms is sufficient. All you have to do, is to write some JavaScript (I'd use jQuery) and handle it a bit differently server side.

please hava a look at http://alexkehayias.tumblr.com/post/14020155360/django-form-validation-ajax

and the app for it http://pypi.python.org/pypi/django-ajax-forms/

Upvotes: 1

Related Questions