I am trying to create an application that allows the user to search a database. The search page layout would behave with some drop down menus that would show data already in the database to narrow the search, and also text boxes to allow the user to put in key words like the "project name". I'm having a problem getting rails to take all the info that has been entered in the search form, and performing one big search.
Here is part of my search layout:
<%= form_tag search_path, :method => 'get' do %>
<%= hidden_field_tag :direction, params[:direction] %>
<%= hidden_field_tag :sort, params[:sort] %>
<p>
<%= text_field_tag :search, params[:search] %>
<%= submit_tag "Search Project Name", :project_name => nil %>
</p>
<p>
<%= text_field_tag :search, params[:search] %>
<%= submit_tag "Search Client", :client => nil %>
</p>
<% end %>
Here is my index and search actions in the project controller:
def index
@projects = Project.all
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @projects }
end
end
def search
@project_search = Project.search(params[:search]).order(sort_column + ' ' + sort_direction).paginate(:per_page => 5, :page => params[:page])
end
and here is part of my models/project.rb file
def self.search(search)
if search
where('project_name LIKE ?', "%#{search}%") || where('client LIKE ?', "%#{search}%")
else
scoped
end
end
As you can see, I am just trying to search on either the project_name or the client. If I can get this working, I will be extending it onto other fields.
The functionality at the moment is that, when I try to search it both boxes, it overwrites one, and only does one of the field searches.
I am brand new to ROR so hopefully someone can help. Any suggestions will be appreciated.
Thanks in advance!
Based on your question, @Chris Wise is assuming that you have two columns in your
projects
table:project_name
andclient
.I might be wrong, but I think you actually have two models
Client
andProject
, where a client has many projects. If so, you need to define the search in each model:Client model:
Project model:
Your form:
Then your controller:
I hope it helps...
I'd like to suggest a few things that you might want to do. First off, having a search method in addition to the index method in your controller is unnecessary as they are both rendering a collection of Projects.
So first off, I would change:
to
This will call the index method instead.
I'd next suggest putting the search logic itself into the model.
In your Project class, add the following method:
Finally, modify your controller action for index as follows:
Effectively what you are doing is searching only if a term is present and otherwise chaining the scope.