simple_form类不起作用

时间:2015-04-28 19:11:22

标签: ruby-on-rails simple-form simple-form-for

我正在尝试使用Simple Form创建表单。出于某种原因,我无法更改表单的类。我使用以下代码:

<%= simple_form_for @presentation, url: send_out_emails_path, 
    defaults: {input_html: { :class => 'form-horizontal' } } do |f| %>
    <!-- Form content here !-->
<% end %>

正在生成这个html:

<form action="/sendout" class="simple_form edit_presentation" id="edit_presentation_152" method="post" novalidate="novalidate">
     <!-- Form content here !-->
</form>

为什么班级没有改变?

0 个答案:

没有答案