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:
Try:
{class: "form-control selectpicker", "data-live-search" => "true" }
<%= 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%>
if you are passing a block to the select, you need to pass {}
two times, e.g.
=> f.select :to_user_id, {}, {}, data: { placeholder: "Choisis des invités..." }, class: "chosen-image" do
- User.find_each do |user|
option(data-img-src="#{user_image_url_for(user)}" value="#{user.id}")
= user.first_name
<%= f.select :food_id, options_for_select(Food.all.map{|c| [c.name, c.id]}, f.object.food_id), {}, {class: "form-control selectpicker", data: {"live-search": true}} %>