The page numbers display correctly. For example if I have 49 items and itermsPerpage:10. It has 5 pages, But it doesn't update the screen when I click next or page number.

<div id="topMain" ng-if="util.results.transactions.length > 0" class='txnResults'>
<ss-transaction row="row" data-last-transaction="$last"
data-result-section-values="util.results"
dir-paginate="row in ::util.results.transactions | itemsPerPage: 10 track by $index ">
</ss-transaction>
</div>
<dir-pagination-controls direction-links="true" boundary-links="true" on-pagechange="pageChanged(newPageNumber)"></dir-pagination-controls>
On the JS side, I just included 'angularUtils.directives.dirPagination' in the Angular.module
Any thoughts?