X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=9107c963d73177a063c76a7afc8dbaa7cb27c572;hb=443346587eb47046e4a5a4624bcb125c665cf615;hp=4766d91189387a70244b14000f9bd3c9f01ea83f;hpb=cb8e3de960b758147b34d8323054e7de70548619;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index 4766d911..9107c963 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -41,9 +41,7 @@ class TextField extends FormElement { function setAsPassword($name) { $this->mPassword = $name; } function getAsPassword() { return $this->mPassword; } - function toStringControl() { - if (!$this->isRenderable()) return ""; - + function toStringControl() { if (!$this->isEnable()) { $html = "name\" value=\"".htmlspecialchars($this->getValue())."\" readonly>\n"; } else { @@ -54,17 +52,17 @@ class TextField extends FormElement { $html .= ( $this->mPassword ? " type=\"password\"" : " type=\"text\""); $html .= " name=\"$this->name\" id=\"$this->id\""; - if ($this->mSize!="") - $html .= " size=\"$this->mSize\""; + if ($this->size!="") + $html .= " size=\"$this->size\""; - if ($this->mStyle!="") - $html .= " style=\"$this->mStyle\""; + if ($this->style!="") + $html .= " style=\"$this->style\""; - if ($this->mMaxLength!="") - $html .= " maxlength=\"$this->mMaxLength\""; + if ($this->max_length!="") + $html .= " maxlength=\"$this->max_length\""; - if ($this->mOnChange!="") - $html .= " onchange=\"$this->mOnChange\""; + if ($this->on_change!="") + $html .= " onchange=\"$this->on_change\""; $html .= " value=\"".htmlspecialchars($this->getValue())."\""; $html .= ">";