Adjusted time.php to honor note on separate row option.
[timetracker.git] / WEB-INF / lib / form / Combobox.class.php
index e253e8e..88f0b50 100644 (file)
@@ -44,13 +44,11 @@ class Combobox extends FormElement {
     var $mCompareOn = "key"; // or "value"
     var $mDataDeep = 1;
     var $mDataKeys = array();
-    var $cClassName    = "Combobox";
 
-       function __construct($name,$value="")
-       {
-               $this->name = $name;
-               $this->value = $value;
-       }
+  function __construct($name) {
+    $this->class = 'Combobox';
+    $this->name = $name;
+  }
 
        function setMultiple($value)    { $this->mMultiple = $value; }
        function isMultiple() { return $this->mMultiple; }
@@ -65,7 +63,7 @@ class Combobox extends FormElement {
        function getDataKeys() { return $this->mDataKeys; }
        
        
-       function toStringControl() {
+       function getHtml() {
 
            if ($this->id=="") $this->id = $this->name;
            
@@ -84,7 +82,7 @@ class Combobox extends FormElement {
                if ($this->style!="")
                   $html .= " style=\"$this->style\"";
                 
-                if (!$this->isEnable())
+                if (!$this->isEnabled())
                   $html .= " disabled";
                   
                $html .= ">\n";   
@@ -111,4 +109,3 @@ class Combobox extends FormElement {
                return $html;
        }
 }
-?>
\ No newline at end of file