AngularJS Dynamic table with add/remove
<body ng-app= "myapp" ng-controller= " TestController" > <div class= "container" > <div class= "row" > <div class= "col-md-12" > <div class= "panel panel-default" > <div class= "panel-body" > <form ng-submit= "addNew()" > <table class= "table table-striped table-bordered" > <thead> <tr> <th><input type= "checkbox" ng-model= "selectedAll" ng-click= "checkAll()" /></th> <th> Firstname </th> <th> Lastname </th> ...