Friday, 19 August 2016

Show Data in Grid Format Using AngularJS and WEB API

Introduction This article explains how to show data in grid format using AngularJs and the Web API. Step 1 I first added some references for supporting AngularJs and BootStrap to this application as in the following: <head>     <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">       <script src="https://code.angularjs.org/1.3.0-beta.5/angular.js"></script>       <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0rc1/angular-route.min.js"></script>       <script src="JavaScript1.js"></script>         <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>   </head>   Then...