diff --git a/forms/DropdownField.php b/forms/DropdownField.php index 6994f7bf9..8f0a43a6d 100755 --- a/forms/DropdownField.php +++ b/forms/DropdownField.php @@ -68,6 +68,10 @@ * ); * * + * @see CheckboxSetField for multiple selections through checkboxes instead. + * @see ListboxField for a single field with a single element. + * @see CheckboxSetField for multiple selections through checkboxes. + * @see OptionsetField for single selections via radiobuttons. + * @see TreeDropdownField for a rich and customizeable UI that can visualize a tree of selectable elements + * * @package forms * @subpackage fields-basic */ diff --git a/forms/OptionsetField.php b/forms/OptionsetField.php index 9b675ab33..8c80eb048 100755 --- a/forms/OptionsetField.php +++ b/forms/OptionsetField.php @@ -47,6 +47,10 @@ * // Pass the fields to the form constructor. etc * * + * @see CheckboxSetField for multiple selections through checkboxes instead. + * @see DropdownField for a simple field with a single element. + * @see CheckboxSetField for multiple selections through checkboxes. + * @see OptionsetField for single selections via radiobuttons. * * @package forms * @subpackage fields-relational diff --git a/forms/TreeMultiselectField.php b/forms/TreeMultiselectField.php index b1c186693..a177e4677 100755 --- a/forms/TreeMultiselectField.php +++ b/forms/TreeMultiselectField.php @@ -30,6 +30,8 @@ * } * * + * @see TreeDropdownField for the sample implementation, but only allowing single selects + * * @package forms * @subpackage fields-relational */