How can you have a hidden field with simple form?

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

That results in this error

undefined method `hidden' for #SimpleForm::FormBuilder:0x000001042b7cd0

link|improve this question

feedback

2 Answers

up vote 27 down vote accepted

try this

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

Shortest Yet !!!

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

Shorter, DRYer and perhaps more obvious.

link|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
4  
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
feedback

Your Answer

 
or
required, but never shown

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