I have created one table using angular js. Now I need to scroll the table rows to specific table row. I tried $anchorScroll but it doesn't worked for me.
<div class="tab-pane fade in active" id="scorecard">
<table class="header-fixed table">
<tbody>
<tr ng-repeat="x in test" ng-class="x == 41 && 'current-user current-user-scroll' || x.show == 0 && 'tng-hide-user' || 'non-current-user'" ng-cloak dashboard-data">
<td class="col-xs-2" >{{ x }}</td>
<td class="col-xs-8">{{ x }}</td>
<td class="col-xs-2">{{ x }}</td>
</tr>
</tbody>
</table>
</div>
What I want from the above code is, I need to scroll the table directly to 41st row.
Thank you.