MouseEnter event for QTable Row
-
Hi, I’m trying to show a delete button on each row of a q-table, but only when the mouse is over that row. I’m looking for something like @row-click, but for mouseover. Is there anyway to do that?
Thanks in advance.
-
@fernando89c you can use body slot, and add the event in your q-tr. something like this https://codepen.io/metalsadman/pen/abdrdJR.
-
Thanks for your reply. I was aware of the use of the body slot for that, but I thought it was necessary to recreate each of the TDs manually, so I was avoiding using it. But your example shows how to continue to generate them automatically. Thanks.