I'm a beginner in AngularJS and I'm looking to show {{Project.inrtcvalue}}
when the mouse hovers over values. Can anyone guide me on how to achieve this using AngularJS?
<table ng-table="tableParams" show-filter="true" class="table" >
<tr ng-class="{'danger': project.rag <= 35, 'warning': project.rag > 35 &&& project.rag < 70 , 'success': project.rag > 70}" ng-repeat="project in $data">
<td data-title="'PRN'" sortable="'prn'" filter="{'prn': 'text'}">
{{project.prn}}
</td>
</tr>
</table>
Essentially, I want to display a controller value when hovering over these <td>
elements. Any suggestions on the best approach for accomplishing this would be highly appreciated.