Class MultiWidget
A widget that is composed of multiple widgets.
Declaration
source linkDocumentation
In addition to the values added by Widget.get_context(), this widget
adds a list of subwidgets to the context as widget['subwidgets'].
These can be looped over and rendered like normal widgets.
You'll probably want to use this class with MultiValueField.
Methods
▶ def __init__(self, widgets, attrs=None) override ▶ def decompress(self, value) Return a list of decompressed values for the given compressed value. The given value can be assumed to be valid, but not necessarily non-empty.
Overrides
This method is overriden in:
▶ def id_for_label(self, id_) overrideinherited doc Return the HTML ID attribute of this Widget for use by a <label>, given the ID of the field. Return None if no ID is available.
This method overrides django.forms.widgets.Widget.id_for_label.
This hook is necessary because some widgets have multiple HTML
elements and, thus, multiple IDs. In that case, this method should
return an ID value that corresponds to the first ID in the widget's
tags.
▶ def value_from_datadict(self, data, files, name) overrideinherited doc Given a dictionary of data and this widget's name, return the value of this widget or None if it's not provided.