Hi there,
I have extend a new class with the 'ModelAdmin'.
Is there a way to hide or pre define fields in the generated form?
Thanks so far...
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
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.
Hi there,
I have extend a new class with the 'ModelAdmin'.
Is there a way to hide or pre define fields in the generated form?
Thanks so far...
Hi,
Just came across this post while looking for something else. If you haven't solve this problem yet here is how I do it.
function getCMSFields() {
$fields = parent::getCMSFields();
$fields->removeByName('Events'); //Removes the Events from the form.
return $fields;
}
Cheers
Robin