mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR: added $extraClass of a hidden field to its rendered html
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@79603 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
1a32847855
commit
cd59a9b1d7
@ -9,8 +9,9 @@ class HiddenField extends FormField {
|
||||
* Returns an hidden input field, class="hidden" and type="hidden"
|
||||
*/
|
||||
function Field() {
|
||||
$extraClass = $this->extraClass();
|
||||
//if($this->name=="ShowChooseOwn")Debug::show($this->value);
|
||||
return "<input class=\"hidden\" type=\"hidden\" id=\"" . $this->id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\" />";
|
||||
return "<input class=\"hidden$extraClass\" type=\"hidden\" id=\"" . $this->id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\" />";
|
||||
}
|
||||
function FieldHolder() {
|
||||
return $this->Field();
|
||||
|
Loading…
Reference in New Issue
Block a user