class documentation

class RadioGroup(list): (source)

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

Undocumented

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

Undocumented

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

Undocumented

Get/set the value, which checks the radio with that value (and unchecks any other value).

@property
value_options = (source)

Returns a list of all the possible values.