How to access drop down values in param

Hi,

I was wondering how to access all option values in drop down list in
rails params array.
In params array only selected value is stored, so is there any way to
access all options and selected value?

One possibility is to create hidden field and fill it in javascript
onsubmit event with all options and selected value and then access it
hidden field in params array.

Is there better solution for this?

Thanks in advance

On 13 July 2012 08:20, aldm alert [email protected] wrote:

Is there better solution for this?

There is no need to use javascript to populate the hidden field, just
populate it in the view when the view is generated. However, in the
request that generated the view there was presumably some information
that allowed the option values to be generated. Simply put whatever
is required to regenerate it in hidden fields and then use that to
regenerate the list in the controller. Another alternative would be
to save whatever is needed in the session.

Colin