I started to use formstatic but I need to make a file field with image preview. I mean, when i edit an object, i want to see the image already linked.

How can I do that?

Thank you !

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

The answer is to use the hint attribute :

ActiveAdmin.register Event do
  form :html => { :enctype => "multipart/form-data" } do |f|
    f.input :map, :as => :file, :hint => f.template.image_tag(f.object.map.url(:thumb))
  end
end

Bye

link|improve this answer
1  
I'd probably add that when Event doesn't have a map, it'll fail with calling the url method on map. This will prevent error: f.input :map, :as => :file, :hint => f.object.map.nil? ? f.template.content_tag(:span, "no map yet") : f.template.image_tag(f.object.map.url(:thumb)) – MeetDom Aug 18 '11 at 19:16
Thank a lot for this information but i don't have error when the Event doesn't have a map, but you are right, it's better to use that ! – Sebastien Aug 19 '11 at 12:31
1  
To work for me I had to use f.object.new_record?: f.input :map, :as => :file, :hint => ( f.object.new_record? || f.object.map.nil? ) ? f.template.content_tag(:span, "no photo yet") : f.template.image_tag(f.object.map.url(:thumb)) – Espen Aug 29 '11 at 7:03
I think this is a worthwhile feature to add to formtastic - if it's clever enough to know that your column represents a file (which it can: :as => :file is unneeded), it should be clever enough to provide you a preview. A hypothetical signature might be: f.input :map, :preview => :thumb – Michael Hellein Sep 23 '11 at 14:42
1  
why does one need to use f.template.image_tag instead of jsut image_tag? – Nik Oct 2 '11 at 9:36
feedback

Use paperclip with formtastic

Formtasitc's github page mentions that it supports paperclip:

:file – a file field. Default for file-attachment attributes matching: paperclip or attachment_fu.

Here are some useful screencasts that will get you going:

Paperclip

Cropping images

EDIT:

To display an image in a column of a grid in ActiveAdmin you need to make a custom column (This is untested and could be flawed, I'm extrapolating this from the documentation):

index do
    column "Title" do |post| 
        link_to image_tag("path to file", :alt => "post image"), admin_post_path(post)
    end
end
link|improve this answer
Yes, i see that but my need is for my backend. I use ActiveAdmin, so i don't write the form myself. Did you use Paperclip in backend? – Sebastien Aug 17 '11 at 7:45
I made an edit to my answer. According to the documentation you can customize grids see the Customizing the Index Page section. – Tim Santeford Aug 17 '11 at 15:54
Yes, but in edit page? I read anything about that. – Sebastien Aug 17 '11 at 16:04
Could you update your question with the form code? I should be able to help you add the image to it once I see it. – Tim Santeford Aug 17 '11 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.