7921 Posts in 1359 Topics by 933 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » DOM FIleDataObjectManager Issue
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
| Go to End | ||
| Author | Topic: | 1033 Views |
-
Re: DOM FIleDataObjectManager Issue

15 June 2010 at 4:26am
If it's showing you a global view of all your objects, you've set up your model wrong. It should only show those related to the current page.
-
Re: DOM FIleDataObjectManager Issue

15 June 2010 at 11:33am
I think this should solve your problem.
static $has_many = array(
'NurseCredentials' => 'NurseCredential' );
NurseCredentials :
static $has_one = array (
'Attachment' => 'File',
'Nurse' => 'Nurse',
'Parent' => 'Page
);Add the last bit, with the parent. SS should automatically associate that dataobject to the parent page, and will then be filtered automatically by the dataobject_manager module (or a complex_table field for that matter)
-
Re: DOM FIleDataObjectManager Issue

16 June 2010 at 7:05am
Hi glenn, thanks for the reply but 'Parent' => 'Page doesn't work. however i noticed that in http://doc.silverstripe.org/modules:dataobjectmanager it says "The primary difference between a FileDataObjectManager and a standard DataObjectManager is that its focus is on the File object related to the DataObject. By default, all the records in a FileDataObjectManager are displayed in a grid view, each represented by an icon of its related File object." but it displayed all files that are already uploaded when creating a new record.
| 1033 Views | ||
| Go to Top |


