HTML code inside buttons with simple_form

前端 未结 5 1296
情深已故
情深已故 2020-12-09 14:54

I\'m new to rails, and just found the simple_form gem. I installed it with bootstrap suport, but now I can\'t get this code to work the way I want it

<%=          


        
5条回答
  •  失恋的感觉
    2020-12-09 15:41

    I think you can't do it with simple_form. But I have good news for you. You should be fine using rails helper along side with simple form.

    just do

    button_tag(type: 'submit', class: "btn btn-primary") do
      content_tag(:i, class: "icon-ok icon-white")
      "Save"
    end
    

    Not sure if this works, even the syntax but it should give you a hint

提交回复
热议问题