class CheckboxGroup(list):
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. |