angular-table
angular-table copied to clipboard
"hover-color" would be nice
Hi there, and congratulations! This is a really great project! A nice new feature for this would be "on-hover". You already implemented "selected-color", "even-color" and "odd-color". It would be very nice to have a "hovered-color" in order to indicate the actual hovered item.
Thanks in advance! m48u
Found a solution for this...
enter some code in angular-table (somewhere in the area of line number 320)
ngClass = " ng-class='{hovered: hoveredItemNr == $index}' ";
ngMouse = " ng-mouseenter='hoveredItemNr = $index' ng-mouseleave='hoveredItemNr = null' ";
and then add some CSS to this CSS class
.table tbody tr.hovered>td {
background-color: lightblue;
color: black;
}
Maybe you find a way to make it selectable like the other colors
Thank you! I will add this as a new feature in the future.
No, thank you!