class documentation

class CheckboxGroup(list): (source)

View In Hierarchy

Represents a group of checkboxes (``<input type=checkbox>``) that have the same name. In addition to using this like a list, the ``.value`` attribute returns a set-like object that you can add to or remove from to check and uncheck checkboxes. You can also use ``.value_options`` to get the possible values.

Method __repr__ Undocumented
Method value.deleter Undocumented
Method value.setter Undocumented
Property value Return a set-like object that can be modified to check or uncheck individual checkboxes according to their value.
Property value_options Returns a list of all the possible values.
def __repr__(self): (source)

Undocumented

@value.deleter
def value(self): (source)

Undocumented

@value.setter
def value(self, value): (source)

Undocumented

Return a set-like object that can be modified to check or uncheck individual checkboxes according to their value.

@property
value_options = (source)

Returns a list of all the possible values.