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?

link|improve this question

80% accept rate
1  
What is so good about simple form?..This would be like f.text_filed :last_name, :size => 40, :maxlength => 4 in normal Rails. More easier?! – rubyprince Mar 17 '11 at 18:09
feedback

2 Answers

up vote 2 down vote accepted

try to use <%= f.input :lastname, :input_html => {:size => 40, :maxlength => 4} %>

link|improve this answer
feedback
<%= f.input :lastname, :input_html => {:maxlength => 15, :size => 40}%>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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