From ce06973b0ed88d8dc429b81579f8e1da05592c48 Mon Sep 17 00:00:00 2001 From: paj Date: Fri, 16 Jul 2010 20:44:05 +0100 Subject: [PATCH] Export MultipleSelectionField; tweak doc --- tw2/forms/__init__.py | 2 +- tw2/forms/widgets.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tw2/forms/__init__.py b/tw2/forms/__init__.py index 2de18fb..831be26 100644 --- a/tw2/forms/__init__.py +++ b/tw2/forms/__init__.py @@ -8,4 +8,4 @@ SingleSelectField, MultipleSelectField, RadioButtonList, CheckBoxList, RadioButtonTable, CheckBoxTable, GridLayout, RowLayout, TableForm, ListForm, TableFieldSet, ListFieldSet, FormPage, FileValidator, - LabelField, LinkField, InputField, SelectionField) + LabelField, LinkField, InputField, SelectionField, MultipleSelectionField) diff --git a/tw2/forms/widgets.py b/tw2/forms/widgets.py index 22b4f40..2ef3f3a 100755 --- a/tw2/forms/widgets.py +++ b/tw2/forms/widgets.py @@ -35,7 +35,7 @@ def prepare(self): class RadioButton(InputField): type = "radio" - checked = twc.Param(attribute=True) + checked = twc.Param('Whether the field is selected', attribute=True) class PasswordField(InputField):