我有一个像
这样的智能表<table st-table="displayedCollection" st-safe-src="FloorData" class="table table-striped">
<thead>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<td colspan="7" class="text-center">
<div st-pagination="" st-items-by-page="10"></div>
</td>
</tr>
</tfoot>
</table>
我需要在angular js文件中获取此表的当前页面索引。 如何在页面索引更改时执行某些操作?
答案 0 :(得分:0)
您可以绑定回调以订阅页面更改。
<div st-pagination st-page-change="onPageChange(newPage)"></div>