About 7,550,000 results
Open links in new tab
  1. Angular: conditional class with *ngClass - Stack Overflow

    Feb 8, 2016 · From the angular documentation: "The asterisk is "syntactic sugar" for something a bit more complicated. Internally, Angular translates the *ngIf attribute into a <ng-template> …

  2. Angular: When to use signal () vs model ()? - Stack Overflow

    May 10, 2024 · When should we use signal() vs model() in Angular? Angular says the following: ModelSignal is a WritableSignal which means that its value can be changed from anywhere …

  3. Angular [disabled]="MyBoolean" not working - Stack Overflow

    May 2, 2018 · Angular [disabled]="MyBoolean" not working Asked 7 years, 6 months ago Modified 1 year, 3 months ago Viewed 230k times

  4. angular - 'ng' is not recognized as an internal or external …

    Jul 19, 2017 · If angular cli is installed and ng command is not working then please see below suggestion, it may work In my case problem was with npm config file (.npmrc ) which is …

  5. How to bundle an Angular app for production - Stack Overflow

    Jun 4, 2016 · 2 to 17 (TypeScript) with Angular CLI OneTime Setup npm install -g @angular/cli ng new projectFolder creates a new application Bundling Step ng build (run in command line …

  6. Angular + Material - How to refresh a data source (mat-table)

    Oct 14, 2017 · There are two ways to do it, because Angular Material is inconsistent, and this is very poorly documented. Angular material table won't update when a new row will arrive.

  7. angular2 template - Angular HTML binding - Stack Overflow

    Nov 23, 2016 · Explore Angular HTML binding techniques and templates to dynamically manipulate content in Angular applications.

  8. angular - No provider for _HttpClient - Stack Overflow

    Nov 14, 2023 · I'm working on a personal project with Angular 17, and there are some settings that I get from the backend of my application. But my Angular HttpClient does not work and …

  9. Angular: error NG8001: 'component' is not a known element

    Jul 6, 2021 · If 'register' is an Angular component, then verify that it is part of this module. To allow any element add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.

  10. What is the equivalent of ngShow and ngHide in Angular 2+?

    11 According to Angular 1 documentation of ngShow and ngHide, both of these directive adds the css style display: none !important;, to the element according to the condition of that directive …