angular Questions

2

I've updated the Angular application to version 18 (18.0.1). I'm facing some issues regarding the http requests on localhost. For most of the requests I'm getting a 404. I'm behind a corporate prox...
Ferocious asked 5/7, 2024 at 6:58

4

In Angular project I have Angular Material mat-form-field my icon appears outside left from <input> field with placeholder on the right side: <mat-form-field appearance="fill" cl...
Terrazas asked 9/4, 2021 at 11:30

4

Solved

Cam anybody suggest How to validate date using reactive form in angular if user select date greater than today date. I want to show error message .If user select greater than today date Thanks
Vandalism asked 21/4, 2021 at 8:52

3

I have a simple component that handle paste event into a form input. The form: this.searchForm = this.formBuilder.group({ query: [ null, [Validators.required] ] }); onPaste(event) { event.prev...
Eldoria asked 8/12, 2017 at 13:46

2

Solved

I have already installed THREE.js in my angular project.I am trying to use OrbitControls in the below fashion but it is giving an error:- var controls = new THREE.OrbitControls(this.camera,this.re...
Sorbian asked 2/5, 2020 at 9:29

4

Solved

I'm building out an angular element and passing some input params to it. I can pass some string input params just fine (ikrId and environment work perfectly) but struggling to pass a boolean value ...
Bickering asked 26/9, 2018 at 22:22

4

Solved

My code includes an if block like this Service: import { isDevMode } from '@angular/core'; export class MyService { constructor() {} methodToTest(): { if (!isDevMode()) { doSomething(); } ...
Halfcock asked 17/7, 2018 at 21:37

2

It is quite stunning how the Internet is empty regarding this topic how to make an event listener passive in Angular. I have a dropdown menu which, when scrolled on, throws an error in Chrome: [I...
Microprint asked 2/12, 2019 at 14:13

8

I have an angular project and I want to use ionic for mobile. I did ionic init. When I run the command ionic serve, I get this error: > ng.cmd run app:serve --host=localhost --port=8100 [ng] Err...
Roue asked 3/11, 2022 at 14:21

4

I would like to provide a path that redirects to a given page based on query parameters. For example: /redirect?page=hero&id=1 should redirect to: /hero/1 Is there any way to do this in t...

3

Solved

There are multiple question regarding this on SO but none was able to solve my problem. There is a project called NVM for Windows https://github.com/coreybutler/nvm-windows which solves this issue ...
Winna asked 21/5, 2024 at 8:21

3

I would like to automatically open Chrome when building my Angular apps. However, I can't use -o because my default browser is Safari (I don't wish to change the default browser). It seems that --...
Ramify asked 25/7, 2019 at 19:25

2

Solved

I have 2 objects in my project: a company and an user. I have a form where the user can update his profile. One of the things he can update is the country. Now to show the countries I use a dropdow...
Aciniform asked 17/5, 2016 at 7:21

4

for some unknown reason a freshly generated angular 14.1 project does not work. it seems like npm i will download corrupt libs. deleting node_modules won't help.. the file (node_modules/@types/node...
Pomade asked 5/9, 2024 at 6:25

7

Solved

I am upgrading an existing Angular application to Angular 15. I am receiving the following error in the browser: index.js:43 Uncaught ReferenceError: global is not defined at 34768 (index.js:43:30...
Lambert asked 26/11, 2022 at 5:6

4

Solved

When my components are like this export OldComponent { @input myInput!: string; } I can prepare the unit tests like this: fixture = TestBed.createComponent(OldComponent); component = fixture.comp...
Cerallua asked 7/2, 2024 at 6:43

4

Solved

I'm trying to build an Angular 15 project in Docker, but the build always hangs at the RUN npm run build step and never completes. This a fresh install ng new ng-sandbox-15 with the Dockerfile, .do...
Hardden asked 11/4, 2023 at 0:21

2

Solved

I'm using Storybook in my Angular application, and I'm having an issue with args I have an arg called "clicked" that updates from false to true as soon as a button is clicked, take a look...
Harumscarum asked 9/6, 2022 at 20:40

4

Solved

I am using the ng-multiselect-dropdown. How can I override the CSS? component.html <ng-multiselect-dropdown [placeholder]="'Select Region'" [data]="dropdownList" [(ngModel)]="selectedItems"...
Iatrogenic asked 18/3, 2019 at 12:17

6

Solved

<input pInputText type="checkbox" [(ngModel)]="rowData.active"> active is a string. It's value is 'true' or 'false'. I wanna bind this string value to a checkbox. So how can I do that?
Cm asked 26/9, 2019 at 8:57

2

Solved

I'll start this question from notion that I've seen a similar question on StackOverflow, but that question had only answer for the difference. What I'm asking is what should I use depending on sit...

2

I migrated my angular 17 project to angular 18 and fount out that proxy.conf.json did not worked for me. What might be the problem here? Thank you in advance "{ /api/*": { "target&...
Adkison asked 22/7, 2024 at 12:10

6

Solved

I wanted to change Angular Material Radio button default color. I can only able to change to radio button color. <mat-radio-group> <mat-radio-button value="1">Option 1</mat-radio-...

5

Solved

Cannot configure story for module where routerLink is used due to error ERROR NullInjectorError: StaticInjectorError(DynamicModule)[RouterLinkActive -> Router] To Reproduce Steps to reproduce ...
Perky asked 15/1, 2020 at 8:27

6

Solved

We are upgrading large scale angular app from 6 to 17. Like everybody else I have also been following Angular Upgrade Guide: but that always talks about upgrading one version at a time. Our app has...
Teamwork asked 19/10, 2023 at 15:59

© 2022 - 2025 — McMap. All rights reserved.