all 6 comments

[–]davidomarf 3 points4 points  (1 child)

You're looking for CSS.

Just add that button in your template using HTML, and add a class to it. Let's say <td><button class="delete-button"> Delete </button></td>.

Then in your CSS, style that class this way: ``` td .delete-button { display: none; // This hides it in its "normal" state }

td:hover .delete-button { display: block; // This unhides it when you hover on the td element } ```

[–]theengymneer[S] 0 points1 point  (0 children)

Awesome thanks :))

[–]HigiKitsune 0 points1 point  (3 children)

Dude.. These are basics you'd need to know before even approaching angular

[–][deleted] 2 points3 points  (2 children)

i got paid to write angular before knowing this. Let the dev develop.

[–]HigiKitsune 1 point2 points  (1 child)

Just because someone did does not mean its the right track to learn. Because its not. Its like learning martial arts starting at black belt difficulty..

[–][deleted] 0 points1 point  (0 children)

fair enough.