]> wagnertech.de Git - timetracker.git/blobdiff - WEB-INF/lib/form/Table.class.php
A bit more progress on delete attachment.
[timetracker.git] / WEB-INF / lib / form / Table.class.php
index 1e692c3167ddce94687c367621a0f31e3a693afd..7bcd78be89e717c60c932e7020eed4e0d04e4d32 100644 (file)
@@ -47,9 +47,10 @@ class Table extends FormElement {
   var $mHeaderOptions = array();
   var $mProccessed    = false;
        
-  function __construct($name) {
+  function __construct($name, $cssClass = null) {
     $this->class = 'Table';
     $this->name = $name;
+    $this->cssClass = $cssClass;
   }
   
   function setKeyField($value) {
@@ -122,6 +123,9 @@ class Table extends FormElement {
     if ($this->mInteractive) $html .= $this->_addJavaScript();
 
     $html .= "<table";
+    if ($this->cssClass) {
+      $html .= " class=\"".$this->cssClass."\"";
+    }
     if (count($this->mTableOptions) > 0) {
       foreach ($this->mTableOptions as $k=>$v) {
         $html .= " $k=\"$v\"";