}
}
- function toStringControl() {
- if (!$this->isRenderable()) return "";
+ function toStringControl() {
- if (!$this->isEnable()) {
+ if (!$this->isEnabled()) {
$html = htmlspecialchars($this->getValue()).
"<input type=\"hidden\" name=\"$this->name\" value=\"".htmlspecialchars($this->getValue())."\">\n";
} else {
if ($this->size!="")
$html .= " size=\"$this->size\"";
- if ($this->mStyle!="")
- $html .= " style=\"$this->mStyle\"";
+ if ($this->style!="")
+ $html .= " style=\"$this->style\"";
$html .= " maxlength=\"50\"";