Category "angular"

How to display data from client service in ngx-wheel Angular

I want to display the ngx-wheel using api but I'm having trouble displaying the data. Here my Service : import { Injectable } from '@angular/core'; import { Htt

Angular 8 ERROR Error: Unable to find context associated with [object HTMLDivElement]

Just another day in the office, right? What once worked is no longer working. Yay! I am supporting an Angular 8 web application and attempting to kickstart loca

Angular TreeView JSON response

I am new to Angular and i need your help !!! I have a TreeView in my Angular project. i can generate TreeView from my API Response. My problem is I don't know h

Angular ERROR TypeError: Cannot read properties of undefined (reading 'onDestroy')

I have problem. Angular is sometimes showing error ERROR TypeError: Cannot read properties of undefined (reading 'onDestroy') I am getting this error when I am

Web crawl angular website for elasticsearch indexing

Is there a way to index an angular website using the web crawler functionality of elasticsearch?

type 'never[]' is missing the following properties from type 'Observable<Customer[]>'

I want to fetch customers list from my back-end via get Http call. But i am unable to declare array of customers in my component. I have customer.interface.ts l

It looks like '' has not been IVY compiled - it has no 'ɵcmp' field

I am currently using Angular 11. When I run the unit tests, all pass except one which says: Error: It looks like 'ResultsService' has not been IVY compiled - it

angular workspace : I do run the application but I getting this type of error NGCC failed

Generating browser application bundles (phase: setup)...Error: ENOENT: no such file or directory, open 'D:/Harry/client/src/src/main.ts' at Object.openSync (nod

component styleUrls not working in production build Angular

I recently updated one of my projects to Angular 13 from 10, during development everything worked just fine. Then when I generated a production build to notice

Angular: how to set up Content-Security-Policy & Trusted Types?

Having read the Angular security guidelines, I would like to: configure the content security policy enable the trusted types enforcement Here is how I changed m

Cordova Android: Can I get any information on underlying Java/HTTP exceptions

I have an Ionic/Cordova Android application that is deployed on various different client internal networks, where the application connects to a http service run

How to disable cursor when hovering over angular component?

I currently have a horizontal mat-stepper component which can be found below; The user is currently able to go back to the previous step by clicking the "Back"

Dynamic Server Side Rendering (SSR) and Client Side Rendering (CSR) in angular depending who requested

Is It posible to create a Node.js service that renders the angular aplication depending in if is a client or a server? Right now I am only using SSR, I followed

Angular Routing: create different language path route to the same component form navbar component

I am using ngx-translate to translate my components. I am able to change website language if the user clicks on language link inside the same component. In an

Path variable to use in data in Angular

i have a problem with tab title setting. Before is was always the same title which is set in index.html Now i would like to have another title in some component

Compare two controls value validation

About I am trying to compare the value of password and confirm password and if found mismatch then message to be shown. Due to some reasons it shows nothing. Am

NGRX router-store: selectCurrentRoute selector undefined

I'm trying to use the selectCurrentRoute selector, but I only get undefined. export interface AppState { router: RouterReducerState<RouterStateUrl> } e

Configure Angular Routes with Auth0s AuthGuard

I would like to configure my lazy loaded routes nested, which are only available if the users is logged in. Authentication works with Auth0s and it's correspond

Keep primeng multiselect open on scroll

I have a primeNG multiselect (p-multiselect) as part of a component library, which we're adding into a report with many other multiselects to create filters. Si

how to display multi dimension array values on screen

// aap.component.html <ul *ngFor="let items of exceltoJson" > <li> {{ items }} </li> </ul> <input type="file" (change)="onFi