I am facing an issue where I need to hide the pagination bar if the number of pages being rendered is less than the items per page. I attempted to use ng-show but it was not successful.
<tr ng-repeat="row in allItems">
<td>{{ row.Name }}</td>
<td>{{ row.Email }}</td>
<td>{{ row.Phone }}</td>
</tr>
</tbody>
<tfoot ng-show="allItems.length > itemsPerPage">
<tr>
<td></td>
<td></td>
<td st-pagination="" st-items-by-page="itemsPerPage" st-template="/example/pagination.html" >
</td>
</tr>
</tfoot>