Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is easy:

<%= f.submit %>

Where does the class declaration go? I'm getting errors on multiple attempts.

share|improve this question
also see stackoverflow.com/questions/8811254/… – Naoise Golden Oct 16 '12 at 10:33

2 Answers

up vote 77 down vote accepted
<%= f.submit 'name of button here', :class => 'submit_class_name_here' %>

This should do. If you're getting an error, chances are that you're not supplying the name.

Alternatively, you can style the button without a class:

form#form_id_here input[type=submit]

Try that, as well.

share|improve this answer
Excellent! Thank you Srdjan. One little curiosity - I've tried using disable_with on these submit buttons but they never seem to work. Is there a reason why that you know of? +1 – sscirrus Mar 15 '11 at 18:09
2  
Try with a hash for the options: {:class => 'class_name', :disable_with => 'Editing...' }. This'll go after the button name. It should work, or at least it's documented as that. – Srdjan Pejic Mar 15 '11 at 18:13
1  
Note that you need to explicitly pass a string ('name of button here') as the first argument to submit in order to use the :class hash as in the answer above. If you don't have that string, you'll get an error message. – theWillCole Sep 15 '12 at 9:36
2  
add class without removing default value answer here stackoverflow.com/questions/8811254/… – Naoise Golden Oct 16 '12 at 10:33

As Srdjan Pejic says, you can use

<%= f.submit 'name', :class => 'button' %>

or the new syntax which would be:

<%= f.submit 'name', class: 'button' %>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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