var $mRows = "";
var $mOnKeyPress = "";
- function __construct($name, $value = '')
+ function __construct($name)
{
$this->class = 'TextArea';
$this->name = $name;
- $this->value = $value;
}
-
+
function setColumns($value) { $this->mColumns = $value; }
function getColumns() { return $this->mColumns; }
function getHtml() {
- if ($this->id=="") $this->id = $this->mName;
+ if (empty($this->id))
+ $this->id = $this->name;
$js_maxlen = "";