How do I refresh db values in tooltip onclick?

I have an onclick event that adds values to a database (serverconnect1.load({id: ID})) inside cards with a repeated masonry. I show these values inside a tooltip.:

dmx-bs-tooltip="qryLikes.count()" dmx-on:click="serverconnect1.load({id: ID});serverconnect2.load({})">

Unfortunately the load event of the serverconnect2 (containing qryLikes) is not refreshing the values inside the tooltip. How do I achieve this?

We improved the tooltips, it should now update the tooltip content when the data changes. There are some limitation in the bootstrap tooltips, the visible tooltip doesn’t update, it is updated when it is hidden and shows again.

1 Like

Thanks Patrick