class documentation

class RadioGroup(list):

View In Hierarchy

This object represents several <input type=radio> elements that have the same name.

You can use this like a list, but also use the property .value to check/uncheck inputs. Also you can use .value_options to get the possible values.

Method __repr__ Undocumented
Method value.deleter Undocumented
Method value.setter Undocumented
Instance Variable value Get/set the value, which checks the radio with that value (and unchecks any other 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 =
Get/set the value, which checks the radio with that value (and unchecks any other value).
@property
value_options =
Returns a list of all the possible values.