I'm pretty new to Drupal and installed 6.14 on my machine then installed the Views 6.x-2.7 module. When I create a new view with node as the type, on the Edit View page almost all the links show the ajax error. Here are some of the examples. I can't finish building the site now. Please help...

An error occurred at /admin/build/views/ajax/display/card/default/display_title.
An error occurred at /admin/build/views/ajax/display/card/page_1/path.

Comments

dagmar’s picture

Status: Active » Postponed (maintainer needs more info)

Please, deactivate javascript from your browser and copy the complete message error.

mmbee888’s picture

I found the solution from http://drupal.org/node/452384

There is a extra "&" in the function parameter. Removing it fixes the problem :D

views/includes/admin.inc

on line 1559:
function views_ui_ajax_form($js, $key, &$view, $display_id) {

to:
function views_ui_ajax_form($js, $key, $view, $display_id) {

dagmar’s picture

Status: Postponed (maintainer needs more info) » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.