-
Notifications
You must be signed in to change notification settings - Fork 471
Description
Issue Type:
Enhancement issue (or maybe just something I don't understand)
Platform:
ReactiveSearch for Web
Description:
Currently, the MultiList component displays a limited list that is useful for filtering. It's limited by size. There is also a "search" subcomponent associated to this component that can help to search inside the MultiList list if showSearch is true.
My problem is that it can only search into the limited list, not the whole list. So if I use the Multilist to filter the results of a DataSearch, I cannot search inside the MultiList for words that are not displayed. So if I want to search for a word that is not in the first 100 results of the MultiList, it is not returned.
Is there a way to search in the whole database when searching inside a MultiList rather than searching in the first 100 results?
Example MultiList component (no really useful example IMO)
<MultiList
componentId="base"
dataField="BASE.keyword"
title="Domaine"
queryFormat="and"
filterLabel="Domaine "
className="filters"
showSearch={true}
showCheckbox={true}
URLParams={true}
placeholder="Rechercher"
react={{
and: FILTER
}}
/>
Reactivesearch version: latest
Browser: all