1779 Posts in 582 Topics by 556 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 217 Views |
-
Passing DO Id to form action

11 January 2012 at 12:46am
Hello,
i have this codes:
http://sspaste.com/paste/show/4f0c0fd19b03emy 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?
| 217 Views | ||
|
Page:
1
|
Go to Top |

