X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2Fform%2FTextField.class.php;h=6b745a2afa59fa580c91a9c64fa06818a8c30b02;hb=817c14c6c2098d85ef912fb95898c857bf533b4f;hp=db29a0c7ed0566a9747adde4994b7fd62095f7e7;hpb=6b4d39a350249fb3f71d49706d242e6d341c2200;p=timetracker.git diff --git a/WEB-INF/lib/form/TextField.class.php b/WEB-INF/lib/form/TextField.class.php index db29a0c7..6b745a2a 100644 --- a/WEB-INF/lib/form/TextField.class.php +++ b/WEB-INF/lib/form/TextField.class.php @@ -30,18 +30,23 @@ import('form.FormElement'); class TextField extends FormElement { + var $title = null; // Control title (ex: to display a tooltip). + function __construct($name) { $this->class = 'TextField'; $this->name = $name; } + function setTitle($title) { $this->title = $title; } + function getHtml() { if (empty($this->id)) $this->id = $this->name; $html = "\n\tid\" name=\"$this->name\""; if (!empty($this->size)) $html .= " size=\"$this->size\""; if (!empty($this->style)) $html .= " style=\"$this->style\""; + if (!empty($this->title)) $html .= " title=\"$this->title\""; if($this->isEnabled()) { if (!empty($this->max_length)) $html .= " maxlength=\"$this->max_length\"";