Active
Project:
Ajaxify Drupal with JQuery Ajax
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Feb 2013 at 14:16 UTC
Updated:
15 Mar 2016 at 22:28 UTC
Jump to comment: Most recent
Comments
Comment #1
serjas commentedIts views module. Views pager appending if any
?or&used in url. I have to find a way to change this behavior.Any suggestion?
Comment #2
quickly commentedI could not resolve this easily, so I used Views Infinite Scroll instead of the pager.
Comment #3
serjas commentedIssue fixed and committed to 7.x-1.x-dev. First please disable this from module config page.
Comment #4
serjas commentedComment #5
rahoward commentedI am having this issue again in the current dev version. I updated due to the issue listed at https://drupal.org/node/1923320, I have scripts removed from the html--ajax.tpl.php and and unchecked the scripts box in the config settings because it was breaking my dropdown menus.
Comment #6
chrislabeard commentedMy URLs still seem to have the ?ajax=1. Even with the option disabled in the config.
Is it even possible to have ajax enabled on a view? I was trying to use it for sorting.
Comment #7
monstrfolk commentedWith scripts disabled in html template a page will not reload if the browser page is refreshed when ajax=1 is present in the URL.
I had to modified ajax_links_api.js at line 33.
After line 33 I added
url = url.replace("?ajax=1", "");
url = url.replace("&ajax=1", "");
to remove ajax=1 from the ajax url links.