Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi im trying to implement a simple search form in my navbar, it works, but there is a problem with it

if im in my show.html.erb view and use the search form i wont get redirected to my index.html.erb. here is my code

<%= form_tag("/products", method: :get) do %>
     <%= text_field_tag :query, params[:query], {:class =>"search-query", :placeholder=>"Search"}  %>                
<% end %>

i want this form to redirect me completley to "products#index", thanks in advance

EDIT:

I figured it out...

i had this

     <form class="navbar-search pull-left">
        <%= form_tag({:controller => "products", :action => "index"}, method: :get) do %>
             <%= text_field_tag :query, params[:query], {:class =>"search-query", :placeholder=>"Search"}  %>                
            <% end %>
        </form>

i had two forms the HTML one and the helper method one.

Thanks anyways

share|improve this question
1  
This looks like it should work. Where is it redirecting you to now? – shioyama Aug 11 '12 at 8:50
Do you have a submit button or code that submits the form? – Tanzeeb Khalili Aug 11 '12 at 8:51
it redirects to the current page im in. if im in show.html.erb and submit that form the browser just refreshes in show.html.erb with the query in the url – Rodrigo Zurek Aug 11 '12 at 9:02
mmm, it dosnt has a submit button, im submiting it with ENTER – Rodrigo Zurek Aug 11 '12 at 9:02
guys forget it, i found out my error, it was plain stupid – Rodrigo Zurek Aug 11 '12 at 9:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.