diff --git a/src/Forms/DropdownField.php b/src/Forms/DropdownField.php index b7f29c41f..a18fc878c 100644 --- a/src/Forms/DropdownField.php +++ b/src/Forms/DropdownField.php @@ -6,7 +6,7 @@ use SilverStripe\ORM\ArrayList; use SilverStripe\View\ArrayData; /** - * Dropdown field, created from a tag. + * Set an HTML attribute on the field element, mostly an input tag. * * Some attributes are best set through more specialized methods, to avoid interfering with * built-in behaviour: @@ -1264,7 +1264,7 @@ class FormField extends RequestHandler * * The field type is the class name with the word Field dropped off the end, all lowercase. * - * It's handy for assigning HTML classes. Doesn't signify the attribute. + * It's handy for assigning HTML classes. Doesn't signify the input type attribute. * * @see {link getAttributes()}. * @@ -1293,7 +1293,7 @@ class FormField extends RequestHandler /** * Describe this field, provide help text for it. * - * By default, renders as a underneath the form field. + * By default, renders as a span class="description" underneath the form field. * * @param string $description * diff --git a/src/Forms/GroupedDropdownField.php b/src/Forms/GroupedDropdownField.php index 0d839df8b..aeb44fa4d 100644 --- a/src/Forms/GroupedDropdownField.php +++ b/src/Forms/GroupedDropdownField.php @@ -6,14 +6,14 @@ use SilverStripe\ORM\ArrayList; use SilverStripe\View\ArrayData; /** - * Grouped dropdown, using tags. + * Grouped dropdown, using optgroup tags. * * $source parameter (from DropdownField) must be a two dimensional array. - * The first level of the array is used for the , and the second + * The first level of the array is used for the optgroup, and the second * level are the for each group. * - * Returns a tag. + * Multi-line listbox field, created from a select tag. * * Usage * @@ -23,7 +23,7 @@ use SilverStripe\View\ArrayData; * ) * * - * @see DropdownField for a simple tag containing all the appropriate