Click on a facet should auto submit.
View on a search api index (database) with facets via submodule 'Facets Exposed Filters'.
Drupal 10.4.3
Better Exposed Filters 7.0.5
Facets 3.0.0
Paragraphs 8.x-1.19
Search API 8.x-1.38
The exposed filter form is shown as a block in a paragraph field as sidebar of the page node.
The view is shown in the page node as a block in another paragraph field via viewreference field. There is no 'page' display of the view, only block.
We have this on multiple views. The following code is used as shortcut and solve autosubmit.
function custommodule_preprocess_form(&$variables) {
switch ($variables['attributes']['id']) {
case 'views-exposed-form-********-block-1':
case 'views-exposed-form-********-block-1':
case 'views-exposed-form-**********-block-1':
$variables['attributes']['data-bef-auto-submit-full-form'] = '';
break;
}
}
Active
7.0
Code