Hello everyone.

I have a form in my rails 3 app, and one of the fields is a "collection select" like this

<div class="field">
<%= f.label :provider_id, "Provider" %>
<%= collection_select( :purchase_document, :provider_id, Provider.all, :id, :name) %>
</div>

The idea, is to be able to add a "link_to" using the selected value from the "collection select" i.e.:

<div class="field">
    <%= f.label :provider_id, "Provider" %>
    <%= collection_select( :purchase_document, :provider_id, Provider.all, :id, :name) %> <%= link_to "Show", provider_path(***selected option from collection select***)%>

But, I don't know how to get the selected value. Is there a rails way to do that?

Hope you can help me, thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Don't know if this is what you want to do, but if you want to dynamically change the link as the user selects different items from the drop-down menu, you need implement this with client side scripting, such as Javascript (or Coffeescript). Ruby on Rails can only perform server side scripting, any dynamic behaviors related to the browser has to be done with client side scripting.

link|improve this answer
Yes, that's exactly what I'm looking for... Do you know where can I find an example? – Angelo Oct 19 '11 at 21:08
Look at marcgrabanski.com/articles/jquery-select-list-values assuming if you are using jQuery (It is the default in Rails 3.1). – Ken Li Oct 19 '11 at 21:16
thanks for your help... I'll try it – Angelo Oct 20 '11 at 13:12
I made some modifications to the code in the page you gave me... and everything works great!!! – Angelo Oct 20 '11 at 16:31
feedback

Your Answer

 
or
required, but never shown

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