Skip to content

Commit

Permalink
DOC Fix Issues on Common_Subclasses Page
Browse files Browse the repository at this point in the history
Escapes an unescaped HTML tag and improves consistency for the list elements
  • Loading branch information
freezernick committed Feb 5, 2023
1 parent 65ee9bd commit 9fd2f59
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -29,7 +29,7 @@ on the Silverstripe CMS API documentation.
* [DateField](api:SilverStripe\Forms\DateField): Represents a date in a single input field, or separated into day, month, and year. Can optionally use a calendar popup.
* [DatetimeField](api:SilverStripe\Forms\DatetimeField): Combined date- and time field.
* [EmailField](api:SilverStripe\Forms\EmailField): Text input field with validation for correct email format according to RFC 2822.
* [GroupedDropdownField](api:SilverStripe\Forms\GroupedDropdownField): Grouped dropdown, using <optgroup> tags.
* [GroupedDropdownField](api:SilverStripe\Forms\GroupedDropdownField): Grouped dropdown, using `<optgroup>` tags.
* [HtmlEditorField](api:SilverStripe\Forms\HTMLEditor\HtmlEditorField): A WYSIWYG editor interface.
* [DBMoneyField](api:SilverStripe\ORM\FieldType\DBMoneyField): A form field that can save into a [DBMoney](api:SilverStripe\ORM\FieldType\DBMoney) database field.
* [NumericField](api:SilverStripe\Forms\NumericField): Text input field with validation for numeric values.
Expand All @@ -55,15 +55,15 @@ doesn't necessarily have any visible styling.

* [CheckboxSetField](api:SilverStripe\Forms\CheckboxSetField): Displays a set of checkboxes as a logical group.
* [TreeDropdownField](api:SilverStripe\Forms\TreeDropdownField): Dropdown-like field that allows you to select an item from a hierarchical AJAX-expandable tree.
* [TreeMultiselectField](api:SilverStripe\Forms\TreeMultiselectField): Represents many-many joins using a tree selector shown in a dropdown-like element
* [TreeMultiselectField](api:SilverStripe\Forms\TreeMultiselectField): Represents many-many joins using a tree selector shown in a dropdown-like element.
* [GridField](api:SilverStripe\Forms\GridField\GridField): Displays a [SS_List](api:SilverStripe\ORM\SS_List) in a tabular format. Versatile base class which can be configured to allow editing, sorting, etc.
* [ListboxField](api:SilverStripe\Forms\ListboxField): Multi-line listbox field, through `<select multiple>`.


## Utility

* [DatalessField](api:SilverStripe\Forms\DatalessField) - Base class for fields which add some HTML to the form but don't submit any data or
save it to the database
save it to the database.
* [HeaderField](api:SilverStripe\Forms\HeaderField): Renders a simple HTML header element.
* [HiddenField](api:SilverStripe\Forms\HiddenField) - Renders a hidden input field.
* [LabelField](api:SilverStripe\Forms\LabelField): Simple label tag. This can be used to add extra text in your forms.
Expand Down

0 comments on commit 9fd2f59

Please sign in to comment.