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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

ModelAdmin $summary_fields image width


Go to End


11 Posts   7776 Views

Avatar
Mad_Clog

Community Member, 78 Posts

2 October 2009 at 8:18pm

Problem is, the link you provided contains information about DataObjectManager instead of ModelAdmin (which this thread is about).
I keep ending up with "Unable to traverse to related object field"
So any other thoughts?

Avatar
patjnr

Community Member, 102 Posts

27 November 2009 at 8:13pm

Hi

This works fine for me.

      
       static $has_one = array(
						'Advertiser' => 'Advertiser',
						'AdvertImage' => 'FittedImage',
	);	
	
	static $searchable_fields = array(
						'TargetURL' => 'ExactMatchFilter',
						'Title' => 'ExactMatchFilter',
	);
	static $summary_fields = array(
						'TargetURL',
						'AdvertImageThumbnail',
						'Title',
						'ToolTipTitle',
	);  
	
	public function AdvertImageThumbnail() {
	  return $this->AdvertImage()->CMSThumbnail();
	}

ta

Avatar
Mad_Clog

Community Member, 78 Posts

28 November 2009 at 4:04am

Go to Top