Hey there,
Just letting you guys know that this module is not working with the latest dev of Ajax (2009-Dec-04) too bad because this dev has a cool feature of not scrolling the form up :(

Anyways is a much needed module to my website, thanks a bunch for the work!

Comments

konordo’s picture

The hook "complete" has been renamed as "redirect" in the dev version of Ajax module.
If you need to use the latest dev of AJAX, just patch the ajax_views_refresh.js. This: (first lines of code)

Drupal.Ajax.plugins.ajax_views_refresh = function(hook, args) {
  if (hook === 'complete') {   

Should change to:

Drupal.Ajax.plugins.ajax_views_refresh = function(hook, args) {
  if (hook === 'redirect') {   

It should work fine after that.

eloivaque’s picture

#1 I worked! Thanks

if user the last version on date 2011-feb, and change file ajax_views_refresh.js. to code of comment #1

capellic’s picture

Status: Active » Reviewed & tested by the community

Thank you! Code update in #1 works! Let's get this into the DEV version at least?