Hi, I'm trying to pass an object from the View to the controller as a hidden field. And am confused about a few things.
For a hidden field, how do I pass a complete object to the controller? For example, I have an object of type Issue, what should the second argument be in the following:
<%= hidden_field("issue", ?, "value" => @issue) %>
Is that even possible?
Secondly, how would I access this object in the controller? params[:issue][:id] doesn't work.
Someone suggested I should put the object in the session. How do I put and retrieve variables from the session?
Any help would be appreciated.
Thanks, Anupam.