Changes between Version 4 and Version 6 of Ticket #27263
- Timestamp:
- Sep 25, 2016, 10:36:50 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27263
- Property Triage Stage Unreviewed → Someday/Maybe
- Property Summary Don't apply the rest of validators if the first one failed → Allow validators to short-circuit in form field validation
-
Ticket #27263 – Description
v4 v6 35 35 super(ChartForm, self).__init__(*args, **kwargs) 36 36 for validator in self.fields['import_file'].validators: 37 validator.f orm= self.fields['import_file']37 validator.field = self.fields['import_file'] 38 38 }}} 39 39