class documentation

class Choice(Argument): (source)

Known subclasses: twisted.python.formmethod.RadioGroup, twisted.python.formmethod.Submit

View In Hierarchy

The result of a choice between enumerated types. The choices should be a list of tuples of tag, value, and description. The tag will be the value returned if the user hits "Submit", and the description is the bale for the enumerated type. default is a list of all the values (seconds element in choices). If no defaults are specified, initially the first item will be selected. Only one item can (should) be selected at once.
Method __init__ Undocumented
Method coerce Convert the value to the correct format.
Instance Variable choices Undocumented

Inherited from Argument:

Method add​Hints Undocumented
Method get​Hint Undocumented
Method get​Long​Description Undocumented
Method get​Short​Description Undocumented
Class Variable default​Default Undocumented
Instance Variable allow​None Undocumented
Instance Variable default Undocumented
Instance Variable hints Undocumented
Instance Variable long​Desc Undocumented
Instance Variable name Undocumented
Instance Variable short​Desc Undocumented
def __init__(self, name, choices=[], default=[], shortDesc=None, longDesc=None, hints=None, allowNone=1): (source)
def coerce(self, inIdent): (source)
Convert the value to the correct format.
choices = (source)

Undocumented