I am using jquery slider ui and rails 4. I am trying to implement a price slider for my product page. However, I ran into a problem. I tried to search around, but I can not find a solution that helps. Hope someone can help me as I'm brand new to rubies on rails. Thanks.
Here is my code
products_controller.rb
respond_to do |format|
format.js do
render :update do |page|
page.replace_html 'x_product_list', :partial => 'products/products_list', :locals => { :product => @product }
with this error:
ActionController :: UnknownFormat
source
share