class documentation

class CheckboxGroup(list):

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):

Undocumented

@value.deleter
def value(self):

Undocumented

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

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.