Wording fix to forms.md

Closes #3032
This commit is contained in:
Simon Welsh 2014-04-17 17:44:54 +12:00
parent e7d45c9222
commit fc9864eed3

View File

@ -9,11 +9,11 @@ form.
A fully implemented form in SilverStripe includes a couple of classes that
individually have separate concerns.
* Controller—Takes care of assembling the form and receiving data from it.
* Form—Holds sets of fields, actions and validators.
* FormField —Fields that receive data or displays them, e.g input fields.
* FormActions—Often submit buttons that executes actions.
* Validators—Validate the whole form.
* Controller Takes care of assembling the form and receiving data from it.
* Form Holds sets of fields, actions and validators.
* FormField — Fields that receive data or displays them, e.g input fields.
* FormActions — Buttons that execute actions.
* Validators Validate the whole form.
Depending on your needs you can customize and override any of the above classes;
the defaults, however, are often sufficient.