X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/6e59f47d1baf9e3d420b4a368dcc005d54b6e599..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 833bffac..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 $cClassName = '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->mValue = $value; } function setKeyField($value) { @@ -95,11 +94,11 @@ class Table extends FormElement { } function _process() { - $this->mProccessed = true; + $this->mProccessed = true; - if ($this->mInteractive) { + if ($this->mInteractive) { // Add a column of clickable checkboxes. - $column = new TableColumn("","getName()."_all\" onclick=\"setAll(this.checked)\">"); + $column = new TableColumn("","name."_all\" onclick=\"setAll(this.checked)\">"); import('form.CheckboxCellRenderer'); $cb = new CheckboxCellRenderer(); if ($this->getIAScript()) $cb->setOnChangeAdd($this->getIAScript()."(this)"); @@ -114,8 +113,7 @@ class Table extends FormElement { } } - function toStringControl() { - if (!$this->isRenderable()) return ""; + function getHtml() { if (!$this->mProccessed) $this->_process(); $html = ""; @@ -160,8 +158,8 @@ class Table extends FormElement { if (0 == $col && strtolower(get_class($this->mColumns[$col]->getRenderer())) == 'checkboxcellrenderer') { // Checkbox for the row. Determine if selected. $selected = false; - if (is_array($this->mValue)) { - foreach ($this->mValue as $p) { + if (is_array($this->value)) { + foreach ($this->value as $p) { if ($p == $this->mData[$row][$this->mKeyField]) { $selected = true; break; @@ -191,7 +189,7 @@ class Table extends FormElement { // setAll - checks / unchecks all checkboxes in the table. $html .= "function setAll(value) {\n"; $html .= "\tfor (var i = 0; i < ".$this->getFormName().".elements.length; i++) {\n"; - $html .= "\t\tif ((".$this->getFormName().".elements[i].type=='checkbox') && (".$this->getFormName().".elements[i].name=='".$this->getName()."[]')) {\n"; + $html .= "\t\tif ((".$this->getFormName().".elements[i].type=='checkbox') && (".$this->getFormName().".elements[i].name=='".$this->name."[]')) {\n"; $html .= "\t\t\t".$this->getFormName().".elements[i].checked=value;\n"; if ($this->getIAScript()) { $html .= "\t\t\t".$this->getIAScript()."(".$this->getFormName().".elements[i]);\n";