tag in the * form HTML. * * @package forms * @subpackage fields-basic */ class TextareaField extends FormField { protected $rows, $cols, $disabled = false, $readonly = false; /** * Create a new textarea field. * * @param $name Field name * @param $title Field title * @param $rows The number of rows * @param $cols The number of columns * @param $value The current value * @param $form The parent form. Auto-set when the field is placed in a form. */ function __construct($name, $title = null, $rows = 5, $cols = 20, $value = "", $form = null) { $this->rows = $rows; $this->cols = $cols; parent::__construct($name, $title, $value, $form); } /** * Create the