How to make Pager using Angular UI bootstrap ? Last Updated : 19 Jul, 2021 Comments Improve Suggest changes Like Article Like Report In this article, we will see how to make Dropdown using Angular UI bootstrap. It is an AngularJS framework created by Angular UI developers for providing better UI which can be used easily. Syntax: <div uib-pager></div> Download AngularUI from the link: https://angular-ui.github.io/bootstrap Approach: First, add Angular UI bootstrap scripts needed for your project. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-animate.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-sanitize.js"></script> <script src="https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.5.0.js"></script> Make pager with its UIBootStrap classes which will set the UI look for the pager.Now make different types of pager using different classes and run the code. Example: javascript <!DOCTYPE html> <html ng-app="gfg"> <head> <!-- Adding CDN scripts required for our page --> <script src= "https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular.js"> </script> <script src= "https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-animate.js"> </script> <script src= "https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-sanitize.js"> </script> <script src= "https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.5.0.js"> </script> <script> // Adding Modules angular.module('gfg', ['ngAnimate', 'ngSanitize', 'ui.bootstrap']); angular.module('gfg').controller('pager', function ($scope) { $scope.page = 10 }); </script> <link href= "https://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <div ng-controller="pager"> <!-- Making a pager --> <h4>GeeksforGeeks Pager</h4> <pre>This is {{page}}th page</pre> <ul uib-pager total-items="100" ng-model="page"> </ul> </div> </body> </html> Output: Reference: https://angular-ui.github.io/bootstrap/#!#pager Comment More infoAdvertise with us Next Article How to make Pager using Angular UI bootstrap ? taran910 Follow Improve Article Tags : Misc Web Technologies AngularJS AngularUI-Bootstrap Practice Tags : Misc Similar Reads How to make Popover using Angular UI Bootstrap ? In this article, we will see how to make Dropdown using Angular UI bootstrap Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Syntax: <div uib-popover></div> Download AngularUI from the link: https://angula 1 min read How to make Tabs using Angular UI Bootstrap ? In this article we will see how to make Tabs using Angular UI bootstrap. Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Download AngularUI from the link: https://angular-ui.github.io/bootstrap Approach: First, add An 2 min read How to make Progressbar using Angular UI Bootstrap ? In this article, we will see how to make Dropdown using Angular UI bootstrap. Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Syntax: <div uib-progressbar></div> Download AngularUI from the link: https://a 1 min read How to make Pagination using Angular UI Bootstrap ? In this article, we will see how to make Dropdown using Angular UI bootstrap Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Syntax: <div uib-pagination></div> Download AngularUI from the link: https://ang 1 min read How to make alert using Angular UI Bootstrap ? In this article, we will see how to make alerts using Angular UI bootstrap. Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Alerts directive is used for generating alerts from static and dynamic model data. Syntax: 2 min read How to make buttons using Angular UI Bootstrap ? In this article, we will see how to make buttons using Angular UI bootstrap. Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Buttons directive is used for making buttons. Syntax: <buttonclass='btn btn-primary'>b 2 min read How to make Dropdown using Angular UI Bootstrap ? In this article, we will see how to make Dropdown using Angular UI bootstrap. Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Syntax: <div uib-dropdown></div> Download AngularUI from the link: https://angu 2 min read How to make Datepicker using Angular UI Bootstrap ? In this article, we will see how to make Datepicker using Angular UI bootstrap. Angular UI Bootstrap is an Angular JS framework created by Angular UI developers for providing better UI which can be used easily. Syntax: <div uib-datepicker></div> Download AngularUI from the link: https:// 1 min read How to use bootstrap 4 in angular 2? Bootstrap is an open-source toolkit for developing with HTML, CSS, and JS. The Bootstrap framework can be used together with modern JavaScript web & mobile frameworks like Angular. Bootstrap 4 is the newest version of Bootstrap, which is the most popular HTML, CSS, and JavaScript framework. This 2 min read Angular ngx Bootstrap Collapse Component Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will learn how to use collapse in angular ngx bootstrap. Collapse is used to make a button that 2 min read Like