I'm using ngx-bootstrap in a Angular8 project. and I need to implementation a feature like this:
mouseover a button , a tooltip will show, and if I keep the mouse on the content of the tooltip, it will keep shown , and once my mouse leave the content of the tooltip, it will disappear.
so I want to handle the event of onShown and tigger the show method manually . and then tigger hidden method when mouse leave the content of tooltip. I have no idea to know how to decide if the mouse is leaved the content of the tooltip. but first I need to handle the event here:https://valor-software.com/ngx-bootstrap/#/tooltip#triggers-custom . theOutputs it saysEmits an event when the tooltip is hidden. I want to know how to handle it.
thank you .