Tutorial by Topics: angular

parameterdescriptioncontrolThis is the control that is being validated. Typically you will want to see if control.value meets some criteria.
Ionic offers a variety of Javascript AngularJS extensions for you to use. These extensions can be anything from normal form inputs to modal windows and makes coding your basic app a lot faster using these ready extensions.
this.myForm = this.formBuilder.group creates a form object with user's configuration and assigns it to this.myForm variable. 'loginCredentials': this.formBuilder.group method creates a group of controls which consist of a formControlName eg. login and value ['', Validators.required], where th...
< div *ngFor="let item of items; let i = index">{{i}} {{item}}</ div> The *ngFor structural directive runs as a loop in a collection and repeats a piece of html for each element of a collection. @View decorator is now deprecated. Developers should be using template or...
NameDescriptioncontrollerAsis an alias name, to which variables or functions can be assigned to. @see: https://docs.angularjs.org/guide/directive$injectDependency Injection list, it is resolved by angular and passing as an argument to constuctor functions. While doing the directive in TypeScript,...
I mainly requested this topic because I could not find any information on setting up multiple API routes with the Angular2-In-Memory-Web-Api. Ended up figuring it out myself, and figured this might be helpful to others.
@Injectable() // Tells dependency injector to inject dependencies when creating instance of this service. request.subscribe() // This is where you actually make the request. Without this your request won't be sent. Also you want to read response in the callback function. constructor(pr...
When you use a web component in your Angular 2 template, angular will try to find a component with a selector matching the custom tag of the web component - which it of course can't and will throw an error. The solution is to import a "custom elements schema" in the module that holds th...
This section provides an overview of what angular-ui-bootstrap is, and why a developer might want to use it. It should also mention any large subjects within angular-ui-bootstrap, and link out to the related topics. Since the Documentation for angular-ui-bootstrap is new, you may need to create...
This section provides an overview of what angular-ui-grid is, and why a developer might want to use it. It should also mention any large subjects within angular-ui-grid, and link out to the related topics. Since the Documentation for angular-ui-grid is new, you may need to create initial versio...
In AngularJS the MVC pattern is implemented in JavaScript and HTML. The view is defined in HTML, while the model and controller are implemented in JavaScript. There are several ways that these components can be put together in AngularJS but the simplest form starts with the view.
Sometimes we need to share some component between some apps and publishing it in npm is one of the best ways of doing this. There are some tricks that we need to know to be able to use a normal component as npm package without changing the structure as inlining external styles. You can see a minim...
Protractor is made for testing Angular applications. However, it is still possible to test non-angular applications with Protractor if needed.
The Angular UI Bootstrap gives you access to all the standard bootstrap icons in your AngularJS application. In the world of bootstrap these icons are normally referred to as glyphicons. Using these glyphicons wisely can quickly give your app a more polished look and can be a great way to dip your t...
Here you will find how to start with angular-cli , generating new component/service/pipe/module with angular-cli , add 3 party like bootstrap , build angular project.

Page 2 of 4