Data table is much useful on all most of projects .
but sometimes we need to disable hover effect and even on specific columns and rows.
adding api for switching hover effect on columns and rows
Ist there any workaround as long until this is implemented?
Setting the :hover background colour for the row to the same colour as it's usual background is a workaround.
Unfortunately there isn't a good way to style rows without using the item.slot and re-implementing most of the data table row yourself. You could try with a deep selector in CSS as well.
i vote for this too
As alternative, possible to use CSS to row (TR) of DataTable :
pointer-events: none;
_Be notice, that It disables all JS and CSS animation for TR element._
Most helpful comment
Setting the :hover background colour for the row to the same colour as it's usual background is a workaround.
Unfortunately there isn't a good way to style rows without using the item.slot and re-implementing most of the data table row yourself. You could try with a deep selector in CSS as well.