Changeset 5468
- Timestamp:
- 06/12/07 21:22:26 (2 years ago)
- Files:
-
- django/trunk/docs/newforms.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/newforms.txt
r5460 r5468 1225 1225 different purpose. Thee types of cleaning methods are run during form 1226 1226 processing. These are normally executed when you call the ``is_valid()`` 1227 method on a form. There are other things that can kick ofcleaning and1227 method on a form. There are other things that can trigger cleaning and 1228 1228 validation (accessing the ``errors`` attribute or calling ``full_clean()`` 1229 1229 directly), but normally they won't be needed. … … 1235 1235 1236 1236 If you detect multiple errors during a cleaning method and wish to signal all 1237 of them to the form submitt or, it is possible to pass a list of errors to the1237 of them to the form submitter, it is possible to pass a list of errors to the 1238 1238 ``ValidationError`` constructor. 1239 1239
