You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on the new UX for the <TableListView /> in Kibana I need to be able to control the search bar query term.
The <EuiInMemoryTable /> allows us to pass the query to the search prop
<EuiInMemoryTablesearch={{query: 'my search'}}/>
But doing so filters down the items provided, as it executes the query against the items to find a match.
What I need is to be able to control the query without executing it against the provided items as the table items are loaded dynamically and already filtered down by the saved object client.
The text was updated successfully, but these errors were encountered:
While working on the new UX for the
<TableListView />
in Kibana I need to be able to control the search bar query term.The
<EuiInMemoryTable />
allows us to pass the query to thesearch
propBut doing so filters down the
items
provided, as it executes the query against theitems
to find a match.What I need is to be able to control the query without executing it against the provided items as the table items are loaded dynamically and already filtered down by the saved object client.
The text was updated successfully, but these errors were encountered: