7912 Posts in 1355 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » DataObjectManager with optional files
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 355 Views |
-
DataObjectManager with optional files

2 August 2010 at 11:17pm
Hey Guys,
Need a little help.
I want to use the DataObjectManager because I have a lot of text fields and NOT EVERTIME A FILE. Or is it possible to use the FileDataObjectManager with optional Fileupload?
Here is my code:
<?php
class DataLinks extends DataObject
{
static $db = array (
'Author' => 'Text',
'Quote' => 'HTMLText'
);static $has_one = array (
'DataLinks' => 'Links',
'Attachment' => 'File',
);public function getCMSFields_forPopup()
{
return new FieldSet(new TextField('Author'),
new TextareaField('Quote'),
new FileIFrameField('Attachment')
);
}
}and
class Links extends Page {
static $has_many = array
(
'DataLinkss' => 'DataLinks',
);function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab("Root.Content.Testimonials", new DataObjectManager(
$this,
'DataLinkss',
'DataLinks',
'Attachment',
array('Date' => 'Date','Author'=>'Author','Quote' => 'Quote'),
'getCMSFields_forPopup'
));
return $fields;
}
}class Links_Controller extends Page_Controller {
}Here is the error:
[User Error] Couldn't run query: SELECT "DataLinks"."ClassName", "DataLinks"."Created", "DataLinks"."LastEdited", "DataLinks"."Author", "DataLinks"."Quote", "DataLinks"."DataLinksID", "DataLinks"."AttachmentID", "DataLinks"."ID", CASE WHEN "DataLinks"."ClassName" IS NOT NULL THEN "DataLinks"."ClassName" ELSE 'DataLinks' END AS "RecordClassName" FROM "DataLinks" WHERE ((getCMSFields_forPopup) AND ("DataLinksID" = '100')) ORDER BY Created DESC LIMIT 10 OFFSET 0 Unknown column 'getCMSFields_forPopup' in 'where clause'Plz help...
-
Re: DataObjectManager with optional files

2 August 2010 at 11:23pm
sorry! perhaps i clicked the post button twice. plz delete one of the posts with no anthers.
| 355 Views | ||
|
Page:
1
|
Go to Top |

