How can I change the size and max allowed characters for a field using Simple Forms. I've tried following but does not work:
<%= f.input :lastname, :size => 40, :max => 4 %>
I know there is a default_input_size in initializers/simple_form.rb however, I don't want to change the size globally but just on few fields.
How would I do this?
f.text_filed :last_name, :size => 40, :maxlength => 4in normal Rails. More easier?! – rubyprince Mar 17 '11 at 18:09