auFormField: Difference between revisions
Appearance
Misterhaan (talk | contribs) New page: {{RightTOC}} FormField Category:Class Category:PHP The auFormField abstract class is part of the auLib package. It is defined in the auForm.php file and use... |
Misterhaan (talk | contribs) No edit summary |
||
Line 22: | Line 22: | ||
* [[auFormSelect]] | * [[auFormSelect]] | ||
* [[auFormMultiSelect]] | * [[auFormMultiSelect]] | ||
==Protected Data== | |||
Protected data from [[auFormElement]] are also available, but not listed here. | |||
===$name=== | |||
Name that the field data gets sent to the server under. | |||
===$label=== | |||
Text to display in the label column to the left of the field. | |||
===$tooltip=== | |||
Text to pop up when the mouse cursor is over the label text. | |||
==Protected Functions== | |||
Protected Functions from [[auFormElement]] are also available, but not listed here unless overridden. | |||
===GetLabel=== | |||
<code>GetLabel()</code> | |||
Gets the label of the element, if any. | |||
* @return = Label of the element. |
Latest revision as of 14:29, 1 May 2008
The auFormField abstract class is part of the auLib package. It is defined in the auForm.php file and used as the base class for the specific field classes in that file.
- Hierarchy
- auFormElement
- auFormField
Usage
There is not generally a reason to use auFormField directly, so a list of descendant classes is also included on this page:
- auFormString
- auFormMultiString
- auFormPassword
- auFormNumber
- auFormInstant
- auFormCheckbox
- auFormFile
- auFormSelect
- auFormMultiSelect
Protected Data
Protected data from auFormElement are also available, but not listed here.
$name
Name that the field data gets sent to the server under.
$label
Text to display in the label column to the left of the field.
$tooltip
Text to pop up when the mouse cursor is over the label text.
Protected Functions
Protected Functions from auFormElement are also available, but not listed here unless overridden.
GetLabel
GetLabel()
Gets the label of the element, if any.
- @return = Label of the element.