search for: client_status_id

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

2006 Aug 02
3
find_by_column_name and for loop returns undef method `each''
I''m trying to understand how to select only certain rows in my database using RoR. As a test I try to find certain clients by adding this code in my list view... <% clientlist = Client.find_by_client_status_id(1) %> <% if clientlist %> <= This prevents me from getting nil errors. <% for client in clientlist %> <= This seems to try and call ''each'' method. ... <tr> and <td> data display ... <% end %> <% end %> My clients table has a cl...