DataObjectManager icon indicating copy to clipboard operation
DataObjectManager copied to clipboard

Bug in of ListField HasManyDataObjectManager

Open brokemeister opened this issue 13 years ago • 0 comments

If you want to display a field of the related object "MyHasOneRelatedObject.Title", it does not work.

Solution: HasManyDataObjectManager (~ line 76)

if(! $SNG->hasField($k) && ! $SNG->hasMethod('get' . $k))

must be changed in

if($SNG->hasField($k) && ! $SNG->hasMethod('get' . $k))

brokemeister avatar May 09 '11 12:05 brokemeister