Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use the validation rules on both client-side and server-side?

I'm using jQuery validation system for client-side validation. The backend works with django. jQuery use an interesting set of rules in JSON format.

Does exists something to use the same rules on django side or I need to code it myself?

like image 481
Andrea Ambu Avatar asked Apr 09 '10 09:04

Andrea Ambu


2 Answers

No, no such thing exists.

Yes, you need to code it yourself.

However, I imagine you could possibly create widgets which are able to deliver generic validation js routines based on the modelFields. Such as "This should be chars not more than max_length". However they could not trivially generate client-side code to validate any custom validation written in python, nor even something like "This must be the username of an existing user". But if you take this trouble to build widgets which do basic validation based on the modelFields please contribute them to open source :-D

like image 195
John Mee Avatar answered Oct 23 '22 22:10

John Mee


This article describes some level of integration: http://streamhacker.com/2010/03/08/jquery-validation-django-forms/

It doesn't look like it actually generates the clientside metadata based on the serverside metadata, but at least puts all rules in one place. May be a good starting point for generating those rules based on the existing Django rules.

like image 2
Jörn Zaefferer Avatar answered Oct 23 '22 21:10

Jörn Zaefferer