Hi Team,
Can we able to disable the ajax submit for the facets ?
Example: Am using the facets block with check-box, when i clicked on any facets , ajax loading is happening, i need the page load , so likes to disable the ajax for the facets block but not to the search view. So is there any HOOK or way to handle this?
Thanks in advance.
Comments
Comment #2
ravi shankar karnati commentedComment #3
ravi shankar karnati commentedComment #4
simplyshipley commented@Ravi Shankar Karnati the Facets Block module just allows grouping multiple facets into a single block. I'm not sure the functionality you're wanting is possible, because facets trigger the AJAX page update if the view has AJAX enabled. If you look at the facets-views-ajax.js file for the Facets module you will see where
Drupal.ajax(views_ajax_settings).execute();is called, around line 83. You would need to create a patch to skip that line and trigger the view update with button or something.Comment #5
gnikolovskiAgree with simplyshipley. Closing the issue.