Angular

Angular Service
  • An angular service can be provided in a module definition. It can also be provided using a decorator
    @Injectable({
      providedIn: 'root',
    })
    Using a decorator has the advantage of being tree shakable. 
  • List of built in services

 Example of listening to custom event:

  @HostListener('hide.bs.modal')
  modalClosing() {
...

  }

Adding Bootstrap.js to angular
Angular schematics can upgrade your code to a major version
<select [formControl]='selectControl'>
    <option [ngValue]=null>Select An Option</option>
    <option *ngFor="let f of comms" [value]="f.GUID">{{f.Name}}</option>
 </select>
Then in the component
selectControl: FormControl = new FormControl();    
.....
this.selectControl.setValue('84584');

Comments

Popular posts from this blog

Adding CKEditor 4 to Angular

Using @CurrentIteration with TFS API