After applying the latest Views update, my view with exposed filters (auto-apply turned on) is now doing a complete page refresh on any change to a filter. Before the update everything was working fine.

I was able to solve the change by restoring one line of code in the views/js/ajax_view.js file

I did this by commenting out line 60:

//  this.$exposed_form = this.$view.children('.view-filters').children('form');

and replacing it with the preexisting line of code:

this.$exposed_form = $('form#views-exposed-form-'+ settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'));

Why this works, I don't really know and not sure if it will result in any other problem, but so far it seems fine.

Comments

jaydee1818’s picture

Component: Miscellaneous » exposed filters
othermachines’s picture

jkingsnorth’s picture

Status: Active » Closed (duplicate)

Hi, there is a little more discussion about the issue in the other issue, so I'll mark this as duplicate so we can focus effort.