$this->value = $value;
}
- function toStringControl() {
- if (!$this->isRenderable()) return "";
+ function toStringControl() {
if ($this->id=="") $this->id = $this->name;
$html = "\n\t<input";
$html .= " type=\"submit\" name=\"$this->name\" id=\"$this->id\"";
- if (!$this->isEnable()) {
+ if (!$this->isEnabled()) {
$html .= " disabled=\"true\"";
}