How to render images in rails3 select

前端 未结 2 1143
半阙折子戏
半阙折子戏 2021-01-20 11:21

I want to render dropdown list in form with images as options. How to achieve this in rails3?

2条回答
  •  盖世英雄少女心
    2021-01-20 12:07

    I like the msdropdown. You can add the path for the image in the title tag:

    
    

    In Rails, you can add the title doing something like:

    <%= f.select(:yourcolumn, Model.all.map{|p| [p.name, p.id, :title => p.image_url(:thumb)]}
    

    I have faced a similar problem some time ago: generate HTML

    提交评论

提交回复
热议问题