Sunday, December 25, 2016

Usage of Enums in typescript

Usage of Enums in typescript Declaration of enum in TypeScript as given below: export enum  Category {Cricket,Tennis,GOLF,Badminton} and in required .ts file import like a module as given below: import {Category} from './enums' Note : enums is another ts file, Kindly refer an image below for enums.ts file...

Wednesday, October 26, 2016

Developing Book My Seat Application In AngularJS And ASP.NET - WebAPI Methods - Part Two Here, I’ve merely thought to write my thoughts about hands-on Angular. This is my first article which tells you how to get your hands dirty with AngularJS & ASP.NET WEBAPI and SQL Server BookMySeat Application Tutorials. BOOKMYSEAT APPLICATION ANGULAR...

Wednesday, October 19, 2016

BOOKMYSEAT APPLICATION AngularJS  Asp.Net Webapi and Sql Server 2012 Here, I’ve thought to write my thoughts about hands-on Angular. This is the first article, which tells you  how to get your hands dirty with AngularJS, ASP.NET WEBAPI and SQL Server BookMySeat Application Tutorials. This is the technology stack for BookMySeat library...

Wednesday, September 21, 2016

 Bookmyseat application angularjs ,webapi and sqlserver 2008 using angular ui bootstrap Hi Folks, I have created a bookmyseat application which has the following technology stack. AmgularJS (  Angular Module,Controller,Angular Service, Routing, Dependancy injection, Service calling using $http.post) Asp.Net WebAPI (Get,Post,Put...

Tuesday, September 13, 2016

Error: [ng:areq] Argument 'fn' is not a function, got string I confronted an error which is shown above during Angular application development which was little tricky to resolve.Though later we could be able to identify an issue  and fix an issue. At time of module loading in angular we were injecting dependancy like this: var routingApp...

Thursday, September 1, 2016

angular.js:38 Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.5.6/$injector/modulerr?p0=routingApp&p1=Error…20c%20(http%3A%2F%2Flocalhost%3A51309%2FScripts%2Fangular.min.js%3A21%3A19) Resolution: Just keep the order of your file as shown below: first load angula.js and than angular-route.js as given below: <script src="~/Scripts/angular.min.js"></script>...

Thursday, August 25, 2016

AngularJS And ASP.NET MVC Movie Library Application - $Watch And $Digest Underhood - Part Six Hope you have had a chance to look at the last tutorial, which talks about the technology stack and creating UI HTML pages with the module and controller and Event Binding with UI elements, as well as routing in Angular JS with partial templates. Kindly...

Tuesday, August 16, 2016

 $digest already in progress when calling $scope.$apply() in AngularJS I was getting this error during i made call to a third-party library to access data on their servers, so I can't take advantage of $http, nor do I want to since I would have to rewrite their library to use $http. $http.jsonp(http://api.myapifilms.com/imdb/idIMDB?title=” “).success(function (response) {             ...

Monday, August 1, 2016

  AngularJS And ASP.NET MVC Movie Library Application - Integration Of IMDB Movie API - Part Fiv ANGULARJS AND ASP.NET MVC MOVIE LIBRARY APPLICATION - PART ONE AngularJS And ASP.NET MVC Movie Library Application - Part Two Module,Controller,$Scope and Twitter Bootstrap AngularJS And ASP.NET MVC Movie Library Application -...