- 🇧🇪Belgium borisson_ Mechelen, 🇧🇪
Since this is in the 1.x version of facets and it is regarding ajax, I'm going to close this issue. We are only supporting ajax with views in facets 3.x.
I have layout builder page with several facet blocks and views block. Ajax is enabled for these blocks.
If specific facet have no result the block will contain two divs with class facets-widget- {{- facet.widget.type -}}
<div class="facet-inactive block-facets-ajax js-facet-block-id-facet_block:facet_id hidden block-facet--checkbox block block-facets block-facet-blockfacet_id"
id="facet-blockfacet_id">
<div class="facet-title h2">Facet Name</div>
<div data-drupal-facet-id="facet_id" class="facet-empty facet-hidden facets-widget-checkbox">
<div class="facets-widget-checkbox"></div>
</div>
</div>
Then if I change values for other facets, the Ajax request will be sent. I will receive response with ajax commands with new content for each block. JS Selectors will be like this #facet-blockfacet_id .facets-widget-checkbox
It means if the facets is empty, then both of divs with facets-widget-checkbox class will be used as wrappers to be replaced.
In such case jQuery function replaceWith replaces wrappers content, new content is displayed, but there is no parent for such jQuery node ($newContent.parents('html').length) and behaviors are not attached in Drupal.AjaxCommands.prototype.insert
So I'm not sire if it is
I tried same case with Bartik theme.
I tried to add :first modifier for selectors and seems it solved current problem
Closed: outdated
1.8
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Since this is in the 1.x version of facets and it is regarding ajax, I'm going to close this issue. We are only supporting ajax with views in facets 3.x.