How to add data attribute in Rails form select tag?

前端 未结 4 1306
自闭症患者
自闭症患者 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:05

    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
    

提交回复
热议问题