Skip to content

Instantly share code, notes, and snippets.

@pratik14
Created August 22, 2015 06:20
Show Gist options
  • Save pratik14/af0a51b499bbaf4d498e to your computer and use it in GitHub Desktop.
Save pratik14/af0a51b499bbaf4d498e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.min.js"></script>
</head>
<body ng-app="myapp">
<div ng-controller="HelloController" >
<h2>Hello {{helloTo.title}} !</h2>
</div>
<script>
angular.module("myapp", [])
.controller("HelloController", function($scope) {
$scope.helloTo = {};
$scope.helloTo.title = "World, AngularJS";
} );
</script>
</body>
</html>
@swapnilchincholkar
Copy link

@pratik14
Copy link
Author

  1. Use this site to create test data https://www.mockaroo.com/
  2. Create a table using this data
  3. Add two links
    • "Soft delete" : Just hide row
    • "Hard delete" : Remove record from collection
  4. "Show All" button to display all records
  5. Add filters to search by "first name", 'last name', 'id', 'email'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment