kaminari paginate via ajax ,remote = true is not affect on view in rails 3 kaminari paginate via ajax ,remote = true is not affect on view in rails 3 ajax ajax

kaminari paginate via ajax ,remote = true is not affect on view in rails 3


you must have forgotten to include the application.js in your layout file

OR

you are using another js or layout then the default one. Please check this

Reason:

The syntax for the pagination is correct

= paginate @anything_upcoming, :remote => true, :param_name => "anything_upcoming_page"

you have also included jquery-rails gem and also included the libraries in application.js

and you are saying data-remote = true is applying to the element. So the only problem I guess left is above one.