function getDataKeys() { return $this->mDataKeys; }
- function toStringControl() {
- if (!$this->isRenderable()) return "";
-
+ function toStringControl() {
+
if ($this->id=="") $this->id = $this->name;
$html = "\n\t<select";
if ($this->mMultiple)
$html .= " multiple";
- if ($this->mOnChange!="")
- $html .= " onchange=\"$this->mOnChange\"";
+ if ($this->on_change!="")
+ $html .= " onchange=\"$this->on_change\"";
- if ($this->mStyle!="")
- $html .= " style=\"$this->mStyle\"";
+ if ($this->style!="")
+ $html .= " style=\"$this->style\"";
- if (!$this->isEnable())
+ if (!$this->isEnabled())
$html .= " disabled";
$html .= ">\n";