Can you use a single refinement/facet list component to drive multiple result lists? #5011
Unanswered
tombburnell
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Indices inherit top-down. So if you have compatible index formats, you can have this layout: instantsearch().addWidgets([
refinementList(),
index().addWidgets([hits()]),
index().addWidgets([hits()]),
]); |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to have multiple lists of results on my home page “Trending”, “Top Sellers” "editor picks" etc..
And I’d like to have a single multi-select facet control for “Genre” so that when the user selects the genre’s they are interested in, all result lists update to show only products in those selected genres.
I'd also like to store their selections for their next visit.
Is it possible and how would you structure it?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions