Stores is a simple reference table with just name and id values.

The search query is in the product controller

  def searching
   if params[:search]
    @products = Product.search(params[:search])
  else
    @products = []
  end

thanks for your time

Ruki

-- 
You received this message because you are subscribed to the Google Groups 
"Thinking Sphinx" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/thinking-sphinx?hl=en.

Reply via email to