7921 Posts in 1359 Topics by 933 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » [SOLVED] removeFolderSelection + Uploadify + DOM
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: | 527 Views |
-
[SOLVED] removeFolderSelection + Uploadify + DOM

25 March 2011 at 2:07pm
I'm removing the upload folder selection & manually setting the upload folder on the DOM popup for a dataobject. Code below:
public function getCMSFields_forPopup()
{
$upload = new ImageUploadField('Image');
$upload->removeFolderSelection();
$upload->uploadFolder = 'Photos';
$f = new FieldSet(
new TextField('Title'),
new TextareaField('Description'),
$upload
);
if($this->ID) {
$f->push(new DropdownField('PhotoAlbumID', 'Attach to a Photo Album', $this->profileAlbumsDropdown()));
}
return $f;
}When you're creating a new object, the upload folder selector is visible. However after saving it, then clicking to edit it in the DOM again, the folder selection is hidden, just like it's supposed to be. What gives?? Why is it displaying the selector at first, but not after creation?
-
Re: [SOLVED] removeFolderSelection + Uploadify + DOM

25 March 2011 at 2:17pm
I quickly discovered that because I'm using an ImageDOM, the initial creation of the object uses the DOM's default upload folder, while editing the object later on uses the ImageUploadField's upload folder. Weird.
The solution was to also set the upload folder on the ImagDOM, however I don't think there's a method for removing the ability to change/select the upload folder.
| 527 Views | ||
|
Page:
1
|
Go to Top |

