Hi all,
I have an image upload field that I dont want to preview in the admin without clicking on the file name (above the browser box) and opening in a light box.
<?php echo JDom::_('html.form.input.file', array(
'dataKey' => 'image_production_1',
'dataObject' => $this->fundentry,
'size' => "",
'target' => "modal",
'root' => 'http://localhost/components/com_entry/files/fundentries_image_production_1/',
'indirect' => true,
));
?>
I have added the paramaters as indicated above, the new ones being target, root and indirect. The image name text is now linked and opens a lightbox but image is not found!
I tried adding the full URL to the root parameter but this still doesnt work!
Any ideas?
Best regards,
K...