input type=text, input type=password, input type=hidden, input fields
inputText, inputPassword, inputHidden, textarea
These controls are largely alike, thus all of them have the same configuration.
- Live examples:
- Definition:
<?php $config = Array( 'id' => Array( 'type' => 'inputText|inputPassword|inputHidden|textarea', 'displayname' => 'This is an input field', 'value' => 'some string here', 'html' => 'CLASS="inputfieldstyle"' ) ); ?> - Possible validators:
- 'required'
- 'date'
- 'string'
- 'number'
- 'custom'
