Simple_form adding class to form

后端 未结 3 1094
太阳男子
太阳男子 2020-12-11 00:55

I am using simple_form in my Rails application, I tried to add form-horizontal class to my form.

相关标签:
3条回答
  • 2020-12-11 01:14

    It's intended behaviour.

    So if you want to change it you should monkey-patch simple_form_css_class method in this file.

    0 讨论(0)
  • 2020-12-11 01:18

    it works for me like this

    = simple_form_for @model, html: { class: "form-horizontal"} do |f|
      ...
    

    it compiles to

    <form accept-charset="UTF-8" action="/numbers" class="simple_form form-horizontal" id="new_number" method="post">
    
    0 讨论(0)
  • 2020-12-11 01:34

    this works for me config.form_class = 'form-horizontal' and keep new_model class

    0 讨论(0)
提交回复
热议问题