Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
45 views

I have two similar Angular projects (both on Angular 20) and currently one of the projects when I run the npm run start command I am constantly getting the error below. Should I remove the package-...
user29988923's user avatar
1 vote
3 answers
46 views

I am migrating my Angular 17 project to 21 and would like to know if there will be any problems if I want to continue using the module feature in Angular 21?
Sodiki's user avatar
  • 193
0 votes
1 answer
41 views

I'm trying to use a variable as select select attribute value and it doesn't seem to work. This is small representation of my component. import { Component, input } from '@angular/core'; @Component({ ...
yesman82's user avatar
  • 451
Advice
0 votes
1 replies
24 views

I am using Highcharts to render a pie chart in an Angular CLI project. Everything works fine except for an accessibility issue: when I move the mouse over the pie chart, the ADA focus outline becomes ...
Harvi Patel's user avatar
2 votes
1 answer
40 views

Hello fellow developers! I'm facing a problem to which I have no solution and I would require your aid to figure it out. I have setup a theme.scss file inside an Angular 19 project, which contains ...
Dan Mihalea's user avatar
-1 votes
0 answers
19 views

I am migrating from Angular 14 to 19. Now i am in Angular 19 version and primeng 19 version.The primeng component styles are not applied. i addded below code in app.module,ts import { ...
Diana's user avatar
  • 11
1 vote
2 answers
29 views

Since Angular version 21 it uses Vitest as default testing framework. I come from Karma + Jasmine and we had a customLauncher in our karma configuration file with the --remote-debugging-port=9333 flag ...
Maichel's user avatar
  • 190
0 votes
0 answers
28 views

I am writing E2E tests for an Angular application using Playwright. I am encountering a flaky issue when trying to interact with an Angular Material slide toggle (mat-slide-toggle). Most of the time ...
Gustavo VL's user avatar
0 votes
1 answer
81 views

I am currently working on a learning project with Angular CLI 21.0.2. I added the following line of markup, but the button still appears with its default color: <button matButton="filled" ...
ostoforostan's user avatar
0 votes
0 answers
28 views

I have an Angular 21 project in which I am using NGXS for state management. I was using jest as a testing framework but vitest works better. The issue is that the NGXS @Selector() decorator is showing ...
Bill Clyde's user avatar
Advice
0 votes
1 replies
30 views

I want to know if it's possible to do Angular migration version automatically with aws TRANSFORM argentic IA?
sodiki SALAMI's user avatar
-1 votes
1 answer
34 views

I am implementing a modern state management pattern in Angular (version 16+) where a dedicated service acts as a state facade, integrating traditional RxJS asynchronous operations with the new Signals ...
michelemalagnini's user avatar
-3 votes
0 answers
45 views

I'm experimenting with Angular (with signal and inject) and I'm trying a pattern where a service acts as a small state manager: The service holds the state in signals (loading, error, items, etc.). ...
michelemalagnini's user avatar
0 votes
1 answer
26 views

Straight forward questions asking for steps to configure Mac iOs. I need local iPhone / Xcode simulator running Angular in Capacitor (no Ionic) to be able to make http calls to Azure Function App ...
Aiden Dipple's user avatar
1 vote
2 answers
42 views

After upgrading my Angular project (v19 → v20 → v21), I opted into the control-flow migration (*ngFor → @for). Some of my templates were migrated like this: @for (item of data; track trackByFn(index, ...
山口�?�太朗's user avatar
0 votes
0 answers
47 views

I am working on a MEAN stack web application but I am having issues with getting the administrator single page application to consistently show the table data in a *ngFor loop. On first load up the ...
fodsfgpstom's user avatar
1 vote
1 answer
29 views

I'm building an application that uses AWS Cognito as IDP for authentication and angular-auth-oidc-client library to handle authentication on my Angular 21 client. I configured it as follows: config: { ...
Francesco Girelli's user avatar
Advice
0 votes
3 replies
45 views

I've migrated my angular 21 tests from jasmine to vitest. And for some of my tests I use separate helper classes (like Page object models). For example: export class SignUpPageObject { constructor(...
AlexB's user avatar
  • 4,684
0 votes
0 answers
36 views

I am implementing a component with an array of elements and there is a *for directive in the component that is connected to the array. The array is dynamic and the loop renders mat-expansion-panel for ...
Dml's user avatar
  • 84
-1 votes
0 answers
16 views

export enum Role { MANAGER = 'Manager', CONSULTANT = 'Consultant', CONTRACTOR = 'Contractor' } I want to be able to add translations for these strings; to add i18n tags and then generate ...
arunkumaraqm's user avatar
1 vote
0 answers
72 views

During debugging, the API request functions correctly. However, when executed in the browser, the request remains in a pending state. The issue appears only when navigating from y.com to x.com—in that ...
Sumit's user avatar
  • 11
-1 votes
0 answers
26 views

I have an angular ionic app, with a laravel backend api, it works fine in browser and the api in reachable and the ssl in configured with let's encrypt in nginx ans it's tls 1.3, idk what im doing ...
The Hermit's user avatar
Advice
0 votes
3 replies
46 views

I'm working with Angular 21 and I've added an interceptor like this: export const httpErrorInterceptor: HttpInterceptorFn = (req, next) => { return next(req).pipe( catchError((error: ...
KrzysiekYESS's user avatar
Best practices
1 vote
4 replies
200 views

My meanings and thoughts are related to pure purpose. Also, in a particular case, what about the JavaScript project?. Best practices to integrate. Can we use it in old projects, or is the best way to ...
Hri100's user avatar
  • 11
2 votes
1 answer
28 views

I implemented a NgbPopover like this: <ng-template #themepopover> <!-- popover content --> </ng-template> <button class="btn" [ngbPopover]="themepopover" container="body" ...
Zonko's user avatar
  • 279
Advice
0 votes
2 replies
95 views

I’m starting an inventory system: multi-branch, reporting, invoicing, which I plan to maintain for several years. Tentative stack: Backend: Java + Spring Boot DB: PostgreSQL Interface: Angular 21 But ...
Mlvin's user avatar
  • 1
2 votes
1 answer
57 views

I actually migrated my Angular app from 17 to 18. I use PrimeNG, but I have some errors with the PrimeNG style. In PrimeNG 18, primeng/resources/primeng.css is not found, so I don't know how I can ...
Sodiki's user avatar
  • 193
Best practices
0 votes
4 replies
63 views

I know it works, I've used this combination many times before, but is it right? What about best practices? What i meen: <button (click)="onBtnClick()">toggle</button> <ng-...
nilagor's user avatar
  • 33
0 votes
1 answer
133 views

After updating an existing app with Zone change detection to Angular v21, I got a lot of errors in the unit tests. I'm getting some NG0100: ExpressionChangedAfterItHasBeenCheckedError errors, but also ...
JSON Derulo's user avatar
  • 18.9k
Tooling
0 votes
1 replies
36 views

Question I’m using ngx-extended-pdf-viewer to render PDFs inside an Angular application. I need to let users highlight text in the PDF, save those highlights as “references”, and later click a ...
Brayden de Koning's user avatar
Best practices
1 vote
1 replies
51 views

I have the following in an older Angular app. newTask: Task = { id: 0, description: '', completed: false, priority: Priority.Normal }; <div> <input [(ngModel)]="...
Maarten's user avatar
  • 11
-3 votes
0 answers
32 views

getLiveGraph(uid: number, timeOut: number) { const config = this.configStore.getData(); return webSocket<LiveGraph>( `${config.wsBaseUrl}/subscriber/${uid}/live_graph/${timeOut}` ...
Tamil Vanan's user avatar
0 votes
0 answers
19 views

I'm trying to debug an Angular application in VS Code using Chrome DevTools Protocol, but the debugger is opening files in the wrong location due to URL path mapping issues. Angular dev server running ...
hemmoleg's user avatar
  • 169
0 votes
3 answers
75 views

I have an Angular front-end and Quarkus back-end running locally on my machine, without any infrastructure like nginx, Kubernetes, etc. Using the application, I am uploading large files (order of ...
ACEG's user avatar
  • 2,051
-1 votes
0 answers
32 views

I have reviewed all source codes in the //adev/shared-docs/components/table-of-contents/ and //adev/src/app/core/layout/secondary-navigation/, I have no ideas. Please help me. I also searched in ...
anlex N's user avatar
1 vote
0 answers
60 views

I'm investigating why our application flickers when running on a slower network such as 3G/4G on a mobile while also using SSR, and I found that the router component disappears after a while, before ...
Chrillewoodz's user avatar
  • 28.5k
0 votes
0 answers
27 views

I'm a bit frustrated with AWS Amplify, what seems like a basic feature of maintaining sessions is seems to fail if the network drops. Here is my Cogntio CDK setup, the refreshTokenValidity is set to ...
Joseph Cannella's user avatar
0 votes
0 answers
85 views

Because of the Angular 20 security issue, I updated to version 20.3.14. But on running the app, getting an error as [vite] Internal server error: Failed to update Vite client error overlay text. ...
3gwebtrain's user avatar
  • 15.5k
-1 votes
1 answer
50 views

I’m working on a feature similar to Figma or Lucidchart where an ellipse (or circle) is placed inside a reference box (a square) with four corner handles for resizing. Screen recording expectation ...
yashwanth's user avatar
1 vote
1 answer
82 views

In my component I have httpResource: export class EmployeesComponent { employees = httpResource<EmployeeResponseDtoOutput[]>(() => '/api/employees', { defaultValue: [], }); } and in ...
TalVik99's user avatar
  • 314
0 votes
0 answers
39 views

Reference: screen recording link I’m working on a feature similar to Figma or Lucidchart where an ellipse (or circle) is placed inside a reference box (a square) with four corner handles for resizing. ...
yashwanth's user avatar
1 vote
3 answers
80 views

In my code I am trying to get the result from this observable: // Runs fine obtenerOfertaPorId(id: number): Observable<Oferta> { return this.http.get<Oferta>(`${this.apiUrl}${this....
Horacio Garc�a Magallanes's user avatar
-3 votes
0 answers
33 views

I was doing the tutorial from https://angular.dev/tutorials/first-app/11-details-page. I got the error message below: NG8113: Home is not used within the template of App [plugin angular-compiler] ...
Damon Heinz's user avatar
0 votes
0 answers
21 views

I am using Angular 12 with the package [email protected]. The cron editor renders correctly, but when I try to patch an existing cron expression into my reactive form, the UI of the cron editor ...
Prashant G's user avatar
Tooling
0 votes
2 replies
106 views

I am reviewing Angular source code. What tools does Angular team use to design these svg? I take some for example: //adev/src/assets/images/overview.svg //adev/src/assets/images/roadmap.svg //adev/src/...
anlex N's user avatar
  • 23
1 vote
0 answers
52 views

I am working with a .NET + Angular WebApp Project I added Angular Aria to the Angular project hoping to use their Autocomplete feature for a Select Box. I copied the code directly from the first ...
freedomdev's user avatar
-1 votes
0 answers
23 views

I have an Ionic Angular application where scrolling is completely broken on iOS (Safari, Firefox, Edge - all WebKit-based). Desktop browsers work perfectly. The diagnostic evidence shows that the ....
MatthewSamaha's user avatar
0 votes
0 answers
42 views

I use the PrimeNG OverlayPanel to display popups in my Angular app. I noticed that for the same content, it sometimes displays a scrollbar and sometimes does not. As you can see in the screenshots, ...
SimonD's user avatar
  • 1,567
1 vote
0 answers
53 views

Excel re-triggers custom functions created in office.js api addin, but from documentation it should only re-trigger the formulas which are volatile function and in office.js api to specify custom ...
Shukla Dev's user avatar
0 votes
1 answer
57 views

today I'm trying to create a simple chat page with chat list and chat window. I tryed to implement it with auxilary routes, but some weird error stopped me. CONTEXT: I have an application - folder ...
Alex Smykov's user avatar

1
2 3 4 5
6137