Class MultiValueField

Aggregate the logic of multiple Fields.

Declaration

class MultiValueField(Field)
source link

Documentation

Its clean() method takes a "decompressed" list of values, which are then
cleaned into a single value according to self.fields. Each value in
this list is cleaned by the corresponding field -- the first value is
cleaned by the first field, the second value is cleaned by the second
field, etc. Once all fields are cleaned, the list of clean values is
"compressed" into a single value.

Subclasses should not have to implement clean(). Instead, they must
implement compress(), which takes a list of valid values and returns a
"compressed" version of those values -- a single value.

You'll probably want to use this with MultiWidget.

Methods

Inherited methods

Subclasses