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.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

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

Using DOM with ModelAdmin - eg, new tab in CMS


Go to End


781 Views

Avatar
JonShutt

Community Member, 244 Posts

28 September 2011 at 5:06pm

HI,

I've got a custom tab in my CMS for 'orders' from a shop

class OrderModelAdmin extends ModelAdmin {
public static $managed_models = array('Order');
static $url_segment = 'Orders';
static $menu_title = 'Orders';
}

this presents me with a screen with a search area on the left, and then results on the right.
I'd like to use the Data Object Manager on the right hand side instead of the standard list it gives me

Any ideas? - examples - or where I could find more documentation?

Cheers