AngularJs Remove Table Row
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("myApp", []); myApp.controller("myController", function($scope) { $scope.message = ''; $scope.rows = ['Table Row 1', 'Table Row 2', 'Table Row 3', 'Table Row 4', 'Table Row 5', 'Table Row 6']; $scope.removeRow = function(index, content) { if(index != -1){ $scope.rows.splice(index,1); $scope.message = content+' removed successfully.'; // do other stuffs such as perform ajax request if want to delete data from //server } }; }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> <span style='color:green;font-weight:bold;'>{{message}}</span> <table> <tr><th>Sample Table</th></tr> <tr ng-repeat="content in rows"> <td>{{content}}</td> <td><a href="#" ng-click="removeRow($index, content)">Remove</a></td> </tr> </table> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("myApp", []); myApp.controller("myController", function($scope) { $scope.message = ''; $scope.rows = ['Table Row 1', 'Table Row 2', 'Table Row 3', 'Table Row 4', 'Table Row 5', 'Table Row 6']; $scope.removeRow = function(index, content) { if(index != -1){ $scope.rows.splice(index,1); $scope.message = content+' removed successfully.'; // do other stuffs such as perform ajax request if want to delete data from //server } }; }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> <span style='color:green;font-weight:bold;'>{{message}}</span> <table> <tr><th>Sample Table</th></tr> <tr ng-repeat="content in rows"> <td>{{content}}</td> <td><a href="#" ng-click="removeRow($index, content)">Remove</a></td> </tr> </table> </div> </div> </body> </html>
Copyrights@tutorialsplane.com