Django form extended validation linked to jquery.validate.js
Project description
Important steps:
* include 'validation_extended' in yours INSTALLED_APPS
* read docstrings from validation_extended.validation
Package features:
- Turns form validation represent like so:
# forms.py
from validation_extended import AutoValidated
class SomeForm(AutoValidated, django.forms.ModelForm): # or django.forms.Form as base class
class Meta:
model = SomeModel
class Validators:
class RequiresAll:
foo = [foo_validator]
bar = [bar_validator]
baz = [baz_validator(5)]
- Forms can make rules for jquery.validate if form class was inherited from ClientValidation
and all validators were inherited from Validator class and written like so:
# validators.py
from validation_extended import Validator
class SimpleValidator(Validator):
message = "simple validator error"
client_events = "focusout keyup"
data = {'values': [1, 2, 3]}
def js_rules(self):
pass
def validated(self, field_name, data):
if not data in self.data['values']:
self.raise_error()
- It also provide remote validation. To use it include next lines in your urls.py:
# urls.py
urlpatterns += patterns(
url(r'^validation/', include('validation_extended.urls')))
* include 'validation_extended' in yours INSTALLED_APPS
* read docstrings from validation_extended.validation
Package features:
- Turns form validation represent like so:
# forms.py
from validation_extended import AutoValidated
class SomeForm(AutoValidated, django.forms.ModelForm): # or django.forms.Form as base class
class Meta:
model = SomeModel
class Validators:
class RequiresAll:
foo = [foo_validator]
bar = [bar_validator]
baz = [baz_validator(5)]
- Forms can make rules for jquery.validate if form class was inherited from ClientValidation
and all validators were inherited from Validator class and written like so:
# validators.py
from validation_extended import Validator
class SimpleValidator(Validator):
message = "simple validator error"
client_events = "focusout keyup"
data = {'values': [1, 2, 3]}
def js_rules(self):
pass
def validated(self, field_name, data):
if not data in self.data['values']:
self.raise_error()
- It also provide remote validation. To use it include next lines in your urls.py:
# urls.py
urlpatterns += patterns(
url(r'^validation/', include('validation_extended.urls')))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-extended-forms-validation-1.1.0.tar.gz.
File metadata
- Download URL: django-extended-forms-validation-1.1.0.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b6ce78553992a32fc9f16849e0749cfb86525d04b51fd3b68d036a2f7b581ea
|
|
| MD5 |
0cac0787450678d5e272b8a70c06fd2c
|
|
| BLAKE2b-256 |
fb46bd81bf30f3dfca756ba501bbd39fc98b88f74aed6a887f7d389443e83bc7
|