import('form.FormElement');
class TextArea extends FormElement {
- var $mPassword = false;
var $mColumns = "";
var $mRows = "";
var $class = 'TextArea';
function setRows($value) { $this->mRows = $value; }
function getRows() { return $this->mRows; }
- function toStringControl() {
+ function getHtml() {
if ($this->id=="") $this->id = $this->mName;