Introduction
In my previous article, I told you How to Show Data in a Dynamic Grid Using AngularJS.
In this article, I will tell you how to apply CRUD operations in a Dynamic Grid using AngularJS.
Previously, I showed you how to show the data in Grid Format, but in this article, we will move one step further and make the Grid editable; in other words, today, I will provide CRUD operations for the Grid.
Step 1. Since I am working on a previous application you can check the previous article to see at which step I had left previously.
Now, I will update the JavaScript section and will provide the edit and delete functionality. For that, you need to write this code in the script section.
$scope.delete = function(id) {
for (i in $scope.employees) {
if ($scope.employees[i].id == id) {
$scope.employees.splice(i, 1);
$scope.newEmployee = {};
}
}
}
$scope.edit = function(id) {
for (i in $scope.employees) {
if ($scope.employees[i].id == id) {
$scope.newEmployee = angular.copy($scope.employees[i]);
}
}
}
First, I provided the delete functionality; for this, I have created a function named "delete". In this function the ID of the Employee is passed, if the ID correctly matches one of the existing IDs then the delete operation will be done and that entry will be deleted.
Similarly, I have created the "Edit" function. In this function, the ID of the Employee will also be passed, but this time the data related to that ID will not be deleted. Instead, it will be passed back to the corresponding textboxes so that the user can make changes, and when the user clicks the save button, the data will again be saved at the same Id position as it was stored previously.
Now, the updated Script looks like this.
<script>
var empid = 1;
function x($scope) {
$scope.employees = [
{ id: 0, 'name': 'Anubhav', 'address': 'Ghaziabad', 'dept': 'Developer' }
];
$scope.saveRecord = function() {
if ($scope.newEmployee.id == null) {
$scope.newEmployee.id = empid++;
$scope.employees.push($scope.newEmployee);
} else {
for (i in $scope.employees) {
if ($scope.employees[i].id == $scope.newEmployee.id) {
$scope.employees[i] = $scope.newEmployee;
}
}
}
$scope.newEmployee = {};
}
$scope.delete = function(id) {
for (i in $scope.employees) {
if ($scope.employees[i].id == id) {
$scope.employees.splice(i, 1);
$scope.newEmployee = {};
}
}
}
$scope.edit = function(id) {
for (i in $scope.employees) {
if ($scope.employees[i].id == id) {
$scope.newEmployee = angular.copy($scope.employees[i]);
}
}
}
}
</script>
Step 2. Now, I will work on the ViewModel of this application and will modify it as well.
You need to update your Table with this code.
<table border="1" bordercolor="blue">
<tr style="color:blue">
<th style="width:150px">Name</th>
<th style="width:150px">Address</th>
<th style="width:150px">Dept</th>
<th>Action</th>
</tr>
<tr style="color:pink" ng-repeat="employee in employees">
<td>{{ employee.name }}</td>
<td>{{ employee.address }}</td>
<td>{{ employee.dept }}</td>
<td>
<a href="#" ng-click="edit(employee.id)">edit</a> |
<a href="#" ng-click="delete(employee.id)">delete</a>
</td>
</tr>
</table>
Here, in the first Row, I added one more heading, "Action". In the second row, I added one more column in which two Anchors are used.
The first Anchor click is bound to the "Edit" function, and the second Anchor click is bound to the "Delete" function.
The ID of the Employee is passed depending on the Anchors, in other words wherever the Anchors are placed, the corresponding ID will be passed to the function.
Now our View Model is updated and its code is like this.
<div ng-app="" ng-controller="x">
<label>Name</label>
<input type="text" name="name" ng-model="newEmployee.name"/>
<label>Address</label>
<input type="text" name="address" ng-model="newEmployee.address"/>
<label>Dept.</label>
<input type="text" name="dept" ng-model="newEmployee.dept"/>
<br/>
<input type="hidden" ng-model="newEmployee.id"/>
<input type="button" value="Save" ng-click="saveRecord()" class="btn btn-primary"/>
<br/>
<br/>
<table border="1" bordercolor="blue">
<tr style="color:blue">
<th style="width:150px">Name</th>
<th style="width:150px">Address</th>
<th style="width:150px">Dept</th>
<th>Action</th>
</tr>
<tr style="color:pink" ng-repeat="employee in employees">
<td>{{ employee.name }}</td>
<td>{{ employee.address }}</td>
<td>{{ employee.dept }}</td>
<td>
<a href="#" ng-click="edit(employee.id)">edit</a> |
<a href="#" ng-click="delete(employee.id)">delete</a>
</td>
</tr>
</table>
</div>
Now, our application is created and is ready for execution.
Output
On running the application you will get the output like this.
Here, you can see that a default row of data is available in the grid, along with the Edit and Delete buttons.
Now, I am adding a new row of data.
As I click on the Save button, this new data will be entered into the Grid.
Now, I will click on the Edit button, and the data can again be seen in the text boxes.
Now, I will update this data and will again click on the save button.
You can see that the data is modified.
Now I will click on the Delete Button at the first row of data and will check what has happened.
You can see that only the second row of data is available.