Hi Gerrit, great plugin.
I’m using the Tooltip on a Label which is inside a cell on a grid.
And when I mouse-over the cell the tooltip shows, and when I click it the tooltip hides, but it does not trigger the select event on the grid itself.
It turns out I was using Label instead of Span/Div, and reading the documentation made it clear that Label should be used with Inputs so when mouse click on the Label it auto focus the input (that’s why the grid row was not being selected).
Changing from Label to Span fixed it, but I was able to spot that after you quick sample. Cheers for that!