X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/3a5964df63eb410b66e02326ebc7f7c90e8d606e..4fdb2cd8b1c8990a7ea8ed40b275dc51174e6585:/WEB-INF/lib/form/Table.class.php diff --git a/WEB-INF/lib/form/Table.class.php b/WEB-INF/lib/form/Table.class.php index ea0d28e8..78fddf50 100644 --- a/WEB-INF/lib/form/Table.class.php +++ b/WEB-INF/lib/form/Table.class.php @@ -41,15 +41,14 @@ class Table extends FormElement { var $mBgColor = '#ffffff'; var $mBgColorOver = '#eeeeff'; var $mWidth = ''; - var $class = 'Table'; var $mTableOptions = array(); var $mRowOptions = array(); var $mHeaderOptions = array(); var $mProccessed = false; - function __construct($name, $value='') { + function __construct($name) { + $this->class = 'Table'; $this->name = $name; - $this->value = $value; } function setKeyField($value) { @@ -114,7 +113,7 @@ class Table extends FormElement { } } - function toStringControl() { + function getHtml() { if (!$this->mProccessed) $this->_process(); $html = "";