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

Using FieldGroup and customizing field layout in ModelAdmin


Go to End


12 Posts   10862 Views

Avatar
Stefdv

Community Member, 110 Posts

3 March 2011 at 9:34am

Got it :)

Again, Swaiba...Thank u so much

Avatar
swaiba

Forum Moderator, 1899 Posts

3 March 2011 at 10:17am

you're welcome

Avatar
Stefdv

Community Member, 110 Posts

16 March 2011 at 5:27am

Swaiba, need your (or anybody else )help again..

I'm trying to do this;

$fields->addFieldToTab("Root.MedRecords", $fields->insertBefore(new LiteralField('NameFieldGroup'.'Patella','<div class="NameFieldGroup">'),'HD'); 
$fields->addFieldToTab("Root.MedRecords", $fields->insertAfter(new LiteralField('NameFieldGroup'.'Patella','<div class="NameFieldGroup">'),'DNA'); 

Well...that doesn't work

My MedRecords are a different DataObject than the one i'm creating the Tab in. The 'Patella' , 'HD' and 'DNA' are fields in my MedRecords.

any ideas on this one ?

Avatar
Carbon Crayon

Community Member, 598 Posts

30 March 2011 at 11:39pm

Hi Stefdv,

I think what you need is just:

$fields->addFieldToTab("Root.MedRecords", new LiteralField('NameFieldGroup'.'Patella','<div class="NameFieldGroup">'),'HD');

Which will insert the field before the 'HD' field under MedRecords tab.

Hope that helps,

Aram

Go to Top