In a view I have the following select() method call:
<%= select(:picklist, :pick, %w{ address number collection })
I have this code between a start_/end_form_tag and use the selected value in an action.
I'd also like to be able to pass the 'selected' value as a parameter in a link_to on the same page. Is this possible and if so, how should I refer to the picklist parameter in my link_to call?
Thanks!