Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Customising the CMS /

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

hiddenField without value


Go to End


1205 Views

Avatar
dacar

Community Member, 173 Posts

7 June 2011 at 10:00pm

Hi,

does anybody know if there is a problem with HiddenFields?

I am trying this:

$root = $this->ParentID;
		// debug::show($root); die();
		$fields = page::getCMSFields();
		$fields->addFieldToTab('Root.Content.Main', new HiddenField($name = "AngeboteHolderID", $title = "", $value = $this->ParentID));

But the generated source looks always like this:

<input class="hidden nolabel" type="hidden" id="Form_EditForm_AngeboteHolderID" name="AngeboteHolderID" value="0" />

Even if i use: $fields->addFieldToTab('Root.Content.Main', new HiddenField($name = "AngeboteHolderID", $title = "", $value = "10")); for example.

HiddenField.php

	function Field() {
		$extraClass = $this->extraClass();
		//if($this->name=="ShowChooseOwn")Debug::show($this->value);
		return "<input class=\"hidden$extraClass\" type=\"hidden\" id=\"" . $this->id() . "\" name=\"{$this->name}\" value=\"" . $this->attrValue() . "\" />";
	}

Is there a problem with $this->attrValue()?

Hpe anybody can help.

Greetings, Carsten.