How to set html on data-disable-with to rails submit_tag

前端 未结 4 1075
独厮守ぢ
独厮守ぢ 2021-02-04 00:15

I have a RoR app using bootstrap. I\'m trying to apply the fontawesome html icon tag to a submit_tag helper, but it does not seem to be supported. When I click submit, the disa

4条回答
  •  闹比i
    闹比i (楼主)
    2021-02-04 00:48

    If using simple_form:

    <%= f.button :button, 
                 'Save', 
                 class: 'my-class', 
                 data: { 
                   disable_with: ''
                 } %>
    

提交回复
热议问题