extraClass(); //if($this->name=="ShowChooseOwn")Debug::show($this->value); return "id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\" />"; } function FieldHolder() { return $this->Field(); } function performReadonlyTransformation() { $clone = clone $this; $clone->setReadonly(true); return $clone; } function IsHidden() { return true; } static function create($name) { return new HiddenField($name); } }