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.

Form Questions /

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

Passing DO Id to form action


Go to End


1098 Views

Avatar
skorp

Community Member, 6 Posts

11 January 2012 at 12:46am

Hello,
i have this codes:
http://sspaste.com/paste/show/4f0c0fd19b03e

my edit url is = site.com/market/edit/1
when i click save i should get the id in edit_save method but dont know how.

i tryed also writing the ID into an hiddenfield but its also not working.

 public function getFrontEndFields(){
    	$fields = $this->scaffoldFormFields(array(
    		'restrictFields' => array(
    			'ID','Name','Description','Photo'
    		)
    	));
    	return $fields;
    }

public function getCMSFields()
    {	
        $fields = parent::getCMSFields();  
    	$fields->addFieldToTab('Root.Main', new HiddenField('ID','','editid'));
        $fields->addFieldToTab("Root.Main", new TextField('Name'));  
        $fields->addFieldToTab("Root.Main", new TextareaField('Description'));
       // $fields->removeFieldFromTab('Root.Main', 'MarketPageID');
        
        return $fields;
    }

anyone any idea how to to this?