<table align="center">
<tr>
<th>No</th>
<th>Movie Title</th>
</tr>
<tr data-ng-repeat="mov in movie | pagination: curPage * pageSize | limitTo: pageSize | filter:searchText" data-ng-show="showSuccessMessage" data-ng-click="selectMovie($event,mov)" data-ng-class="{'selected':selectedMovie.film_id===mov.film_id}" style="cursor: pointer;">
<td>
</td>
<td>
{{mov.title}}
</td>
</tr>
</table>
Aboe code is work properly but how can i count the number and display in No??

$index? it's a variable defined insideng-repeat, it gives you the actual index of the loop.