method

hidden_field

hidden_field(object, method, options = {})
public

Works just like text_field, but returns an input tag of the "hidden" type instead.

3Notes

Value parameter

Mogbox · Jul 30, 200819 thanks

You can add a value to your hidden field by using the :value parameter.

===== Example

hidden_field(:object, :field, :value => params[:requestval])

No security

RurouniJones · Jun 7, 20102 thanks

One important thing to remember is that this is NOT hidden in the source code and can be modified by an evil user so all input in a hidden field should be considered as untrustworthy and checked just like a visible field.

Hidden Field Example

cantbecool · May 7, 20121 thank

Here's a pseudo code example of a hidden field within an ERB template. A post has many comments and this comment form is in a post's show view. This would set a comment's post_id attribute.


<%= form_for(@comment) do |f| %>

<%= f.hidden_field :post_id, :value => @post.id %>

<% end %>