6 class Group(widget.Widget):
7 """An object for grouping together Form elements.
9 When the value changes, an gui.CHANGE event is sent. Although note,
10 that when the value is a list, it may have to be sent by hand via
18 def __init__(self,name=None,value=None):
19 """Create Group instance.
22 name -- name as used in the Form
23 value -- values that are currently selected in the group
26 widget.Widget.__init__(self,name=name,value=value)
30 """Add a widget to this group."""
31 self.widgets.append(w)
47 for w in self.widgets: