var $mDataKeys = array();
var $cClassName = "Combobox";
- function Combobox($name,$value="")
+ function __construct($name,$value="")
{
- $this->mName = $name;
+ $this->name = $name;
$this->mValue = $value;
}
function toStringControl() {
if (!$this->isRenderable()) return "";
- if ($this->mId=="") $this->mId = $this->mName;
+ if ($this->id=="") $this->id = $this->name;
$html = "\n\t<select";
- $html .= " name=\"$this->mName\" id=\"$this->mId\"";
+ $html .= " name=\"$this->name\" id=\"$this->id\"";
if ($this->mSize!="")
$html .= " size=\"$this->mSize\"";
if ($this->mStyle!="")
$html .= " style=\"$this->mStyle\"";
+
+ if (!$this->isEnable())
+ $html .= " disabled";
$html .= ">\n";
if (is_array($this->mOptionsEmpty) && (count($this->mOptionsEmpty) > 0))