In SS3, I have a CustomImage object extending Image to make use of some custom Image GD functions.
However the upload field for this does not show existing files in the Assets folder. Replacing CustomImage with Image, these files then show again. Any ideas?
public static $has_one = array(
'Thumbnail' => 'CustomImage',
);
...
$ThumbUpload = new UploadField('Thumbnail', 'Thumbnail image');
$ThumbUpload->setFolderName('Uploads/images/');
$fields->addFieldToTab('Root.Main', $ThumbUpload, 'Content');