I have a use-case in KIbana to develop that allows a user to select a subset of search results displayed as a result of passing a query to search bar in the Discover tab and then displaying the selected results in another window.
To implement this I thought of doing something like:
-
Add a button/icon on the navbar to allow opening of a new kibana window when clicked. This I am able to do with the help of navbarExtensions, as explained here Dev on Kibana plugin: navbar icon disappear when switching tabs .
-
Have a checkbox appear in the Discover tab results section with each document result using which I can select a subset of results and pass their document id's to open another window of Kibana when the user clicks the icon/button on the navbar.
Currently, I am not able to find a way to do step 2. So I have following questions regarding it.
- Is it even possible to include something like a checkbox to the Discover UI programmatically?
- If yes, what a the ways to do it? Plugin or API? Is there a document or any link where I can more about it?
