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

How can you have a hidden field with simple form?

The following code:

= simple_form_for @movie do |f|
  = f.hidden :title, "some value"
  = f.button :submit

results in this error:

undefined method `hidden' for #SimpleForm::FormBuilder:0x000001042b7cd0
share|improve this question

2 Answers

up vote 84 down vote accepted

try this

= f.input :title, :as => :hidden, :input_html => { :value => "some value" }
share|improve this answer
5  
Thanks, that worked. = f.input :title, :as => :hidden, :input_html => { :value => "some value" } – Oleander Mar 20 '11 at 21:14

Shortest Yet !!!

=f.hidden_field :title, :value => "some value"

Shorter, DRYer and perhaps more obvious.

Of course with ruby 1.9 and the new hash format we can go 3 characters shorter with...

=f.hidden_field :title, value: "some value"
share|improve this answer
You don't need to wrap input html options here since it is a standard field provided by Rails. – Semyon Perepelitsa Oct 22 '11 at 14:52
5  
Do you mean f.hidden_field :title, :value => "some value"? – Michael Durrant Oct 24 '11 at 19:58
Yes, this is correct. – Semyon Perepelitsa Oct 25 '11 at 18:33
updated the code. – Michael Durrant Nov 21 '11 at 17:45
2  
Added ruby 1.9 (optional) format. Three more characters chopped off... – Michael Durrant Jul 19 '12 at 0:41

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.