
how to create a Angular JS Filter table
Before We Start
Every developers need, clean and modern elements to develop their websites, It contain pictures and a user interface element within a website. The most important one and the first section that the user sees when he/she enters a website. how to create a Angular JS Filter table
So if you are a person who wishes to develop a website, you have to know how to create that properly.

how to create a Angular JS Filter table
Download Udemy paid courses FREE
We are here to solve your problem. In this article we discuss how to create this elements. Before we start please read the below articles which easier you to understand the process, if you are new to development.
Step 1 – Add HTML
It’s too easy and simple. Just copy and paste below code in your HTML editor between <body> </body> tag.
<div class="container" data-ng-app="myApp" data-ng-controller="myCtrl">
<div class="row">
<div class="col-md-2">
Search:
</div>
<div class="col-md-10">
<input type="text" class="search" data-ng-model="table" />
</div>
</div>
<br />
<table>
<tr>
<th>Name</th>
<th>City</th>
<th>Country</th>
</tr>
<tr data-ng-repeat="customer in people | filter: table">
<td>{{customer.Name}}</td>
<td>{{customer.City}}</td>
<td>{{customer.Country}}</td>
</tr>
</table>
<div data-pagination="" data-num-pages="numPages()" data-current-page="currentPage" data-max-size="maxSize" data-boundary-links="true"></div>
</div>
Step 2 – Add CSS
Download Udemy paid courses FREE
We use some external CSS link to this code. No need to worry about this, copy and paste below code between <style></style> tag.
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
</head>
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
</style>
Step 3 – Add JavaScript
We use some external JavaScript link to this code. No need to worry about this, copy and paste below code between <head></head> tag.
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.3.0.min.js"></script>
</head>
And also copy and paste below JavaScript code between <script></script> tag.
<script>
var app = angular.module("myApp", ["ui.bootstrap"]);
app.controller("myCtrl", function ($scope) {
($scope.customers = [
{
Name: "Alfreds Futterkiste",
City: "Berlin",
Country: "Germany"
},
{
Name: "Ana Trujillo Emparedados y helados",
City: "México D.F.",
Country: "Mexico"
},
{
Name: "Antonio Moreno Taquería",
City: "México D.F.",
Country: "Mexico"
},
{
Name: "Around the Horn",
City: "London",
Country: "UK"
},
{
Name: "B's Beverages",
City: "London",
Country: "UK"
},
{
Name: "Berglunds snabbköp",
City: "Luleå",
Country: "Sweden"
},
{
Name: "Blauer See Delikatessen",
City: "Mannheim",
Country: "Germany"
},
{
Name: "Blondel père et fils",
City: "Strasbourg",
Country: "France"
},
{
Name: "Bólido Comidas preparadas",
City: "Madrid",
Country: "Spain"
},
{
Name: "Bon app'",
City: "Marseille",
Country: "France"
},
{
Name: "Bottom-Dollar Marketse",
City: "Tsawassen",
Country: "Canada"
},
{
Name: "Cactus Comidas para llevar",
City: "Buenos Aires",
Country: "Argentina"
},
{
Name: "Centro comercial Moctezuma",
City: "México D.F.",
Country: "Mexico"
},
{
Name: "Chop-suey Chinese",
City: "Bern",
Country: "Switzerland"
},
{
Name: "Comércio Mineiro",
City: "São Paulo",
Country: "Brazil"
}
]),
($scope.people = []),
($scope.currentPage = 1),
($scope.numPerPage = 5),
($scope.maxSize = 5);
$scope.numPages = function () {
return Math.ceil($scope.customers.length / $scope.numPerPage);
};
$scope.$watch("currentPage + numPerPage", function () {
var begin = ($scope.currentPage - 1) * $scope.numPerPage,
end = begin + $scope.numPerPage;
$scope.people = $scope.customers.slice(begin, end);
});
});
</script>
At the end we will have something like this. You can change fonts, colors, backgrounds and all things that you want. Enjoy it.

Video Tutorial
Please watch this video to better understand this tutorial and don’t forget to subscribe to our channel.
Download Udemy paid courses FREE
Help others to find out about this article on Social Media sites. If you have any doubt or any problem, don’t hesitate to contact us. Thereafter we will be able to help you and also make sure you bookmark our site on your browser.