Hi there,
I'm using a form tag to implement a search text_field.
<% form_tag catalogues_path(:select => params[:select]), :method => "get" do %>
The problem is the catalogues_path which should consist the select param. Unfortunately the select param doesn't get handed over in the upper example...
The result is the same as if I would just write:
<% form_tag catalogues_path, :method => "get" do %>
Any hint will be appreciated!
Thanks Makrus