Simple_form adding class to form

雨燕双飞 提交于 2019-12-17 19:57:52

问题


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

<form accept-charset="UTF-8" action="/account/orders" class="simple_form new_order" data-validate="true" enctype="multipart/form-data" id="new_order" method="post" novalidate="novalidate">

When I use html: { class: "form-horizontal" } it change class="simple_form new_order" to class="simple_form form-horizontal".

What should I do to keep new_order class?


回答1:


It's intended behaviour.

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




回答2:


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">



回答3:


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



来源:https://stackoverflow.com/questions/13903175/simple-form-adding-class-to-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!