search for: find_term

Displaying 1 result from an estimated 1 matches for "find_term".

2006 Jul 03
2
Still struggling with data flow ...
Hello, The following view: <%= start_form_tag %> Enter term to find <p> <%= text_field_tag :name, params[:name] %> </p> <%= link_to "Find", { :action => ''find_term''} %> <%= end_form_tag %> does not appear to pass back the value of :name to the action: def find_term term = Term.find_by_name(params[:name]) if term redirect_to :controller => "term", :action => "show", :id => term.id...