I am trying to have class="text" in my input fields when using a custom wrapper called :hinted in simple_form 2.0.0.rc

  config.wrappers :hinted do |b|
    b.use :input, :class => "text"
  end

but the output doesn't have that class, I tried

:wrap_with => {:class => 'text'} 

to no avail

Does anyone know how this is done?

Thank You!

link|improve this question

so do you want to have class "text" on your inputs or on the wrapper? – nash Feb 21 at 19:37
input, I want <input class='text'> and I don't want this done inline as in <%= f.input :due_at, input_html: {class: 'text'} %> – Nik Feb 22 at 0:08
feedback

1 Answer

up vote 2 down vote accepted

Currently there no way to do this. You can use the defaults options like this if you want.

<%= simple_form_for(@user, :defaults => { :input_html => { :class => "text" } }) do %>
  <%= f.input :name %>
<% end %>
link|improve this answer
that'll do it, actually, as those text fields that I need to have class "text" for is in a simple_fields_for for an association. Thanks Rafael – Nik Feb 22 at 2:38
@rafaelfranca maybe we should implement it? I can help if it sounds like a good idea – nash Feb 22 at 6:08
@nash sure. If you want, you can try to make this a valid wrapper configuration – rafaelfranca Feb 23 at 17:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.