daniel-nagy / md-data-table

Material Design Data Table for Angular Material
MIT License
1.9k stars 519 forks source link

page next not working #442

Closed ksinghrathore closed 8 years ago

ksinghrathore commented 8 years ago

I am facing issue with $sope.query.page. It does not change when clicked on next button.

<tr md-row ng-repeat="order in orders | limitTo: query.limit : (query.page -1) * query.limit">

<md-table-pagination md-limit="query.limit" md-limit-options="[5, 10, 15]" md-page="query.page" md-total="{{orders.length}}" md-on-paginate="getOrders" md-page-select></md-table-pagination>

limit and total is working correctly.

ksinghrathore commented 8 years ago

Solved - my $watch event triggers page next to page 1. Thanks