BUGFIX Allowing FormAction instances to be readonly by setting disabled="disabled". Adding CSS class "disabled".

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@68194 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2008-12-10 21:50:03 +00:00 committed by Sam Minnee
parent 9cf7fb7736
commit 042a4f0fac

View File

@ -69,6 +69,10 @@ class FormAction extends FormField {
'type' => 'submit',
'name' => $this->action
);
if($this->isReadonly()) {
$attributes['disabled'] = 'disabled';
$attributes['class'] = $attributes['class'] . ' disabled';
}
return $this->createTag('button', $attributes, $this->attrTitle());
} else {
@ -79,7 +83,10 @@ class FormAction extends FormField {
'name' => $this->action,
'value' => ($this->dontEscape) ? $this->Title() : $this->attrTitle()
);
if($this->isReadonly()) {
$attributes['disabled'] = 'disabled';
$attributes['class'] = $attributes['class'] . ' disabled';
}
$attributes['title'] = ($this->description) ? $this->description : ($this->dontEscape) ? $this->Title() : $this->attrTitle();
return $this->createTag('input', $attributes);