Displaying 2 results from an estimated 2 matches for "find_recip".
Did you mean:
  find_recipes
  
2006 Nov 17
8
Basic search, quick question
...'ve checked 
and none seem to help my problem.
I''m trying to get a simple search to work on my Rails app, but I get a 
"Couldn''t find Recipe without an ID" error when I search.  Here''s what I 
have:
list.rhtml
<%= start_form_tag :action => ''find_recipes'' %>
  <input type="text" name="search" />
  <%= submit_tag ''Search'' %>
<%= end_form_tag %>
recipes_controller.rb
  def find_recipes
    @recipe = Recipe.find :all, :conditions => [''title LIKE ?'', 
"%#{...
2007 Apr 01
12
How to List Records in Descending Order?
I am brand-new to RoR and have only followed and replicated the few
tutorials that are out there.
I have searched and searched, but cannot find an answer to this simple
question:
How can you list records in descending order?
I have the cookbook example loaded, but can''t seem to list the recipes
in reverse order (by the primary key - id).
Thanks ahead of time for any and all help.
--