eui icon indicating copy to clipboard operation
eui copied to clipboard

[EuiInMemoryTable] Option to control the query term without executing it

Open sebelga opened this issue 3 years ago • 0 comments

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

<EuiInMemoryTable
  search={{ 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.

sebelga avatar Sep 15 '22 11:09 sebelga