Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
190 views

I'm trying to migrate an Angular component to use the new inject() function instead of constructor injection. However, my component extends a base class that requires constructor parameters. import { ...
Optimus .Prime's user avatar
0 votes
0 answers
30 views

I'm experiencing accessibility issues when loading a page from my mfe-base. When loading my shell application, the displayed page is from mfe-base. The focus is being assigned to an image, which ...
Anna Vitória's user avatar
1 vote
1 answer
160 views

We are migrating a couple of Angular 17 applications to a Micro-Frontend architecture by using Native Federation, but there is still one issue I still couldn't solve, which is the app context for some ...
Guilherme Taffarel Bergamin's user avatar
3 votes
1 answer
268 views

I'm trying to change my Angular 17 project to be a standalone project. But some of the fundamental files are different than how they are defined in tutorials and other people's projects. I didn't have ...
Rand Ashley's user avatar
1 vote
1 answer
57 views

I am very new to Angular. I am trying to call a GET web API method upon a button click. Now I want to display the response in HTML. When I try to access the model object, it says: Object is possibly '...
nikhil's user avatar
  • 1,764
1 vote
0 answers
50 views

dataTeamService = jasmine.createSpyObj('DataTeamService',['setDataGroup'],{ selectValGroup: of({ id : 1, accessData : false }) }); it('shoud remove valData when accessData is false',()=>{ fixture....
Vishnu's user avatar
  • 767
1 vote
1 answer
106 views

I updated Angular v17=>v18=>v19 recently. File references in my.component.css à la background-image:url(/assets/mypic.png) are no longer working. component.html <img src="assets/picture....
AndreasS's user avatar
  • 384
1 vote
2 answers
78 views

I am having a service that insert data in an array ( list ). service.ts code is below. Problem: Data gets passed to service from component but after push to array it becomes null import { Injectable } ...
Heemanshu Bhalla's user avatar
0 votes
1 answer
197 views

We have migrated our Angular applications into Microfrontends using Dynamic Module Federation (with @angular-architects/module-federation). In each remote application, I imported a styles.css into app....
karrivinodh's user avatar
0 votes
1 answer
84 views

I'm using Angular 17 and ng-bootstrap 16 and I'm creating an ng-bootstrap modal. I have a Template in my component used as the content for the modal. What I want is to enable or disable the Save ...
HisDivineShadow's user avatar
1 vote
1 answer
76 views

Like it says, I want to add an item to the middle of a FormArray. So, I have a FormArray and every FormArray item has a button to add a new FormArray item. However, it currently always adds it to ...
HisDivineShadow's user avatar
0 votes
3 answers
83 views

I'm creating a dynamic FormArray within a FormGroup. The only change I've made is switching from *ngFor to the new @for. The issue occurs when I try to remove an element from the FormArray. Previously,...
user30188574's user avatar
0 votes
0 answers
30 views

I am upgrading my medium-sized application from Angular 16 to Angular 17. However, [ngClass.*] breakpoints are no longer supported in ngx-layout for Angular 17. Since my styles are SCSS-based, I need ...
DevBiz's user avatar
  • 31
0 votes
3 answers
115 views

I am trying to do component inheritance in Angular 17 and cannot figure why its giving me an error. Here is my code structure: export class ParentComponent { constructor(public httpService: ...
Yogesh's user avatar
  • 344
0 votes
0 answers
33 views

I am having a mat-table with many columns and the data in some of the mat-cells is empty I want my mat-cell to inherit the width of my mat-header-cell. Note: width of my mat-header-cell is based on ...
Chakradhar's user avatar
0 votes
1 answer
340 views

I upgraded to Angular 17 and now ng serve does not run in dev mode, no source map is available. I tried every possible solution I found online related to proxy config, package.json, angular.json. I ...
user30061734's user avatar
0 votes
1 answer
130 views

I updated my Angular application to version 17. I am also using Angular Material, so before updating, I got rid of legacy components. But after updating Angular Material to v17, I noticed that ...
Alan Dolan's user avatar
0 votes
0 answers
170 views

I'm working on migration of Angular 14 project to Angular 17. One of the main obstacles is that the app has some ng2 charts that are version 2 which is not compatible with newer versions of Angular. ...
Gosia's user avatar
  • 7
1 vote
0 answers
86 views

I'm using a separate CDK virtual scroll viewport for the header and need to keep it synchronized with the main row viewport. Currently, I'm using the elementScrolled event of the row viewport to track ...
Ashley Colaco's user avatar
1 vote
2 answers
1k views

I am trying to upgrade my Angular application from version 16 to version 17, but I’m encountering several dependency conflicts that are blocking the process, and I am facing errors during the update. ...
Virender Thakur's user avatar
1 vote
0 answers
59 views

I'm trying to run Angular MFE application with Angular different versions using Web component technique. But I'm getting below error. ERROR RuntimeError: NG0203: inject() must be called from an ...
vijred's user avatar
  • 85
0 votes
0 answers
23 views

I try to setup websocket connection in Angular. When adding the SockJs socket, the buttons are no longer working. Please help me why is the button no longer responding. Not working code(Button not ...
Henk Fransen's user avatar
0 votes
0 answers
29 views

while importing {map} in file templates.component.ts file import { map } from "rxjs/operators"; Code snipppet: this.changeMessage = combineLatest([ this....
Upasna Singla's user avatar
1 vote
0 answers
55 views

product.carousel.component.html <swiper-container loop="true" navigation="true"> @for (image of images; track $index) { <swiper-slide> <img ...
will's user avatar
  • 11
1 vote
0 answers
84 views

I recently updated my Angular project from version 16 to 17. The update went smoothly, including the installation of node_modules. However, when I attempt to build or serve the project, I get the ...
Vinoth Karuppusamy's user avatar
1 vote
0 answers
41 views

So, I have an angular project. The web works perfectly fine on a computer, but not on my phone. I have an androin 13 phone. I tried multiple browsers. When I tried debbuging it, I got this error after ...
Typek834's user avatar
0 votes
1 answer
139 views

I recently upgraded to Angular 17 and the new Verse builder. After running ng build I get: An unhandled exception occurred: window is not defined See "/private/var/folders/gv/...
Flowmerca's user avatar
  • 305
1 vote
1 answer
403 views

Hi I'm having doubt I'm using input signal instead of @Input I'm sending data from parent component one as simple variable like and another as signal name = "ajai" name=signal("ajai&...
Ajai Ramalingam's user avatar
1 vote
2 answers
10k views

I was running nG version 17.3 on my Win10 system. I wanted to upgrade my Angular CLI to latest version 19. So I did the following steps- npm uninstall -g @angular/cli npm install -g @angular/cli@...
Prabir Choudhury's user avatar
0 votes
0 answers
68 views

I am using Angular 17 and while running the build I am getting an error stating Error: src/app/common/util.ts:3:8 - error TS1259: Module '"/usr/src/app/node_modules/dompurify/dist/purify.cjs"...
Nitin Niraj's user avatar
1 vote
1 answer
404 views

<p-multiSelect [options]="employees" [(ngModel)]="selectedEmployees[question.id]" [optionValue]="'nip'" [optionLabel]="'label'" ...
MAY's user avatar
  • 21
1 vote
0 answers
58 views

We are automating a third party application using RPA. The application is written in Angular 17 and has many default animations enabled (like expanding a collapsed panel) - which lead to delays and ...
Falco's user avatar
  • 3,466
1 vote
1 answer
60 views

I am posting my question here although I have doubt in my mind if this is at all achievable. My case scenario is a bit typical. So please bear with me if some of it appears verbose/weird. I am saving ...
Prabir Choudhury's user avatar
0 votes
1 answer
119 views

I am trying to bind data fetched from database to a dropdownlist upon loading a certain component/page in a nG17 app. The backend API is written in .NetCore 8. I have done the relevant pieces of code ...
Prabir Choudhury's user avatar
1 vote
1 answer
91 views

I am trying to pass data from a parent to its child component in Angular 17. The data is retrieved from the back-end through an API that gets an array of items. In my parent component, items$ is a ...
Ems's user avatar
  • 202
1 vote
0 answers
35 views

I am getting error on tabMethod is not function child component In the Parent component: In the .ts file: this.pillTabs = [ { tabName: 'Subscribers', tabMethod: this.showSubscribers.bind(this) }, ...
Angular Guru's user avatar
2 votes
1 answer
235 views

I am using Angular v17 and configuration allows for setting subresourceIntegrity to true which will add the integrity hash to the <script> tags that import the compiled Angular project. This is ...
Wayne Kaskie's user avatar
  • 3,522
1 vote
0 answers
92 views

How can I implement zoom functionality for a swiper element in Angular 17? I followed this approach to use swiper elements in my Angular project. I tried adding the zoom property in the same way as ...
Murmulodi's user avatar
  • 739
1 vote
0 answers
103 views

I have a specific component I want to use Shadow Dom with to completely isolate it from external styles (most of the other components use the default emulated view encapsulation). However, I noticed ...
Andrew's user avatar
  • 794
3 votes
0 answers
35 views

I tried deploying my angular 17 project from my local machine to azure. For creating a dist folder I have created a web config and referenced it by adding it in angular json file under "build&...
Maheshwaran 52's user avatar
1 vote
3 answers
180 views

In my project I have wrapper classes that are reused often and some contain the 'gap' css property. Now I have a component that loads data asynchronously and that component is hidden if the returned ...
Stampler's user avatar
1 vote
1 answer
110 views

I followed this approach to use swiper elements in my angular 17 ssr project. If I use swiper inside material GridList then the view is not rendered properly. Are there any rendering timing issues? ...
Murmulodi's user avatar
  • 739
0 votes
0 answers
137 views

I'm working on integrating Google reCAPTCHA v3 in my .NET backend and Angular frontend. I’ve set up the backend to verify the reCAPTCHA token with Google’s reCAPTCHA API, but I'm getting a response ...
Clinton Hadrian's user avatar
1 vote
0 answers
200 views

I'm working on an Angular 17 application where I'm trying to add an Authorization Bearer token to the request headers upon login. However, I'm facing an issue where the HttpInterceptor retrieves null ...
Kenbrnbe's user avatar
0 votes
2 answers
150 views

help is appreciated and thanks in advance for all solutions. I created a FormGroup and want via loop adding FormControls to a FormGroup. This tutorial is from Matt Thornton building a real site with ...
ReMadWeb's user avatar
1 vote
2 answers
1k views

I have found everything related to angular material theming, however, it's not the case. After upgrading Angular 16 to Angular 17 (17.3.10) I cannot import some styles from a specific node_module. ...
mimasik's user avatar
  • 43
-1 votes
1 answer
38 views

one TrueFalseValueComponent used for if checkbox is checked , I will get 1, if checked is false i will get 0. For example I am selected first record selection value 0. Now checkbox is not checked. I ...
Angular Guru's user avatar
1 vote
1 answer
377 views

Recently, I upgraded my Angular version 14 to 17. After upgrading to 17, I am getting some problems like after installing the npm module getting the error with node_modules which is not expected. ...
Al Imran's user avatar
  • 171
0 votes
2 answers
72 views

I need to team suggestion , I have more than 10 form. I want create common directives or any other option form value change before routing. If form changed we need to get confirmation from ...
CMS Develop's user avatar
1 vote
1 answer
259 views

More than one custom value accessor matches form control unspecified name attributes NG_VALUE_ACCESSOR I am created two directives for input fields one checkbox true or false instead of 0 or 1 . ...
Angular Guru's user avatar

1
2 3 4 5
10