Groups
Groups
Sign in
Groups
Groups
Ruby on Rails: Talk
Conversations
About
Send feedback
Help
formtastic: radio button collection image_tag
49 views
Skip to first unread message
alexander ryder
unread,
Jun 16, 2014, 3:04:28 AM
6/16/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
Hello,
I would like to ask, how am I going to integrate an image tag during edit on formtastic for a collection of array of images?
form do |f|
f.inputs "Building" do
f.input :name
f.input :image, :as => :radio , :collection => Dir.glob("public/img/buildings/*")
end
f.actions
end
Thank you in advance,
Alex
Alex Ryder
unread,
Jun 16, 2014, 4:50:17 AM
6/16/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rubyonra...@googlegroups.com
images = Hash.new
Dir.glob("public/img/buildings/*").each do |s|
s.gsub!("public/img/buildings/", "")
images["<img src='/img/buildings/".html_safe + s + "'>".html_safe] = s
end
form do |f|
f.inputs "Building" do
f.input :name
f.input :image, :as => :radio , :collection => images
end
f.actions
end
Reply all
Reply to author
Forward
0 new messages