I know I had this search function working only a moment ago but have been redoing my search and navbar with bootstrap and now it looks good but the search function is not working!! I think it's something in the index action? All it does is, well, nothing. Perhaps it's not submitting the form? - how can I check this?
VIEWS *guidelines_controller.rb*
def index
@guidelines = Guideline.order(:title).all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @guidelines }
end
@search = Sunspot.search(Guideline) do
fulltext params[:search]
end
@guidelines = @search.results
end
layouts/application.html.erb
<%= form_tag guidelines_path, :class => 'navbar-search', :method => :get do %>
<%= text_field_tag :search, params[:search], :class => 'search-query', :placeholder=>"Search" %>
MODELS guideline.rb
searchable do
text :title, :default_boost => 2
text :subtitle
end