Pagination with Filtering using AngularJS

17. September 2015 AngularJS 10
In the previous post we take a look at how to enable pagination on a web page using AngularUI. Things gonna be different when have filters applied on your ng-repeat. The pagination would not update itself as the filter applied. What you need to do is add a watch the textbox which the filtration is ...

Pagination using AngularJS

11. September 2015 AngularJS 5
AngularUI pagination directive can be used to easily enable paging on your web page. In this tutorial we will learn how to do that. Demo Pre-requisites You need to download the following scripts and add a script reference in your web page. AngularJs https://code.angularjs.org/1.4.5/ CDN: https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js AngularUI https://angular-ui.github.io/bootstrap/ Optional (to have some style) Bootstrap http://getbootstrap.com/getting-started/ ...