角度x可编辑+排序和分页

时间:2015-06-24 14:38:19

标签: angularjs

我正在开发angular-xeditable来添加更新和删除网格数据。但是我还需要角度分页和排序功能。关于如何将这两者结合起来的任何想法?

1 个答案:

答案 0 :(得分:0)

为分页添加以下css:

<script src="http://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.10.0.min.js"></script>

在“添加”按钮后的html中包含分页,如下所示:

<pagination class="nomargin pull-right"
      total-items="totalItems"
      items-per-page="itemsPerPage"
      ng-model="currentPage"
      ng-change="pageChanged()">
</pagination>

您需要在控制器上对上面的分页标记中的范围做一些工作。

访问以下内容:

http://plnkr.co/edit/APCMh0?p=preview

http://codepen.io/roktas/pen/AFEsh