How to add data attribute in Rails form select tag?

前端 未结 4 1311
自闭症患者
自闭症患者 2021-02-18 14:33

I found this Bootstrap Select project and its gem for Rails. I want to implement search in the select tag.

I do inspect element and here is the HTML source:



        
4条回答
  •  借酒劲吻你
    2021-02-18 15:03

      <%= f.select(:plan_id, {},{}, {'v-model'=>"plan_id",'@change'=>"onChange", class: "form-control"}) do  %>
    <% Plan.all.each do |plan| %>
        <%= content_tag(:option,"#{plan.name.upcase} #{plan.max_items}  #{number_to_currency(plan.price)}", value:plan.id, :data => {items: plan.max_items, price: plan.price}) %>
    <% end%>
    <% end%>
    

提交回复
热议问题