在使用自定义包装器时,我正在尝试在我的输入字段中使用class =“text”:hinted in simple_form 2.0.0.rc
config.wrappers :hinted do |b| b.use :input,:class => "text" end
但是输出没有那个类,我试过了
:wrap_with => {:class => 'text'}
无济于事
有谁知道这是如何做的?
谢谢!
解决方法
目前没有办法做到这一点.如果需要,您可以使用这样的默认选项.
<%= simple_form_for(@user,:defaults => { :input_html => { :class => "text" } }) do %> <%= f.input :name %> <% end %>