640 questions
Score of -3
1 answer
54 views
Angular 12 Infinite Refresh in core.js [closed]
We have a donation system built on Angular 12 with a C# backend. This issue has arisen because we are designing the site. The current site works. The redesign has caused an issue where under certain ...
Score of 0
1 answer
61 views
Angular 15 - typescript compilar option target and usedefineforclassfields are set to es2022 and false respectively by angular cli
We have a Tizen Angular 12 project its ECMA target "target": "es5" & "module": "es2020"
When we try to upgrade to Ang 15 upwards we get warning
typescript ...
Score of 0
0 answers
122 views
Upgrading Angular v11 to v12 getting SassError on ng serve
I upgraded my Angular app from 11 to 12.
I used the commands:
1: ng update @angular/core@12 @angular/cli@12 --force
2: ng update @angular/cdk@12 @angular/material@12 --force
I've encountered some ...
Score of 0
0 answers
129 views
"Cannot set property status of [object XMLHttpRequest] which has only a getter" after upgrading Angular 12 to 13
Note: I'm resubmitting a previous question (which I'm deleting) as I've learned more.
I've inherited an application and am working on migrating it to a supported version. It started from Angular 5. I'...
Score of 1
1 answer
76 views
Component declared in a parent module not visibile inside a component rendered by ng-template
I have an app written in Angular 12.2.16 and I need to implement some components.
This specific part is about LayoutLoader (component+module)
In layout-loader/layout-loader.component.html there is <...
Score of 0
1 answer
796 views
Issue with Antiforgery Token Decryption in .NET 8 Application Deployed Across Multiple Regions
I am currently developing a web application with a frontend built using Angular 12 and a backend consisting of three microservices developed using .NET 8 Web API. The database we are using is Azure ...
Score of 1
0 answers
50 views
Is there any way we can use lazy loading in the routing module of the file in which we are using <router-outlet>?
I am making a page in angular v12 and i am using router outlet in one of my component so that it can be reused. There is a property (output emitter) of router-outlet known as activate that get ...
Score of 1
0 answers
69 views
Common directive for pagination using angular
I am working on an application where I need to apply a common directive to set the paginations but it is not working for me. Below is the code
Html Code
<p-table [value]="...
Score of 1
0 answers
34 views
Angular: How to handle "Loader" & "child div with piechart of c3.js" in parent component when isLoading is received from child once api is subscribed
In the below code snippet, I am trying to handle the behaviour of a css loader, as soon as the data is fetched and isLoading is false the loader should stop and the desired pie chart from child ...
Score of 0
1 answer
236 views
How to capture the response of form submit using Angular 17
I am working on an application where the flow is when I submit the form it posts the response to the URLRetour I need to capture the response before it redirected me to the URLRetour. Or how can we ...
Score of 0
1 answer
51 views
How to access parent property in child controller - Angular 12
I have an Ionic 5 app (@ionic/angular 5.8.5), with Angular. I would like to get the value of comingFromOldBoardVol in the child controller.
Parent:
import { Component, OnInit } from '@angular/core';
...
Score of 1
2 answers
6918 views
Angular CLI Node.js compatibility issue: Angular CLI requires minimum Node.js version 18, but Angular 12 project doesn't support this Node.js version
I'm diving into Angular as a beginner and currently working on a project specifically with Angular 12. To set things up, I opted not to install Angular CLI globally and instead used npx -p @angular/...
Score of 1
0 answers
60 views
array.push(row) is not detecting as a change in angular EventEmitter
I have following code and the Eventemitter is working only for the first row selection and the deselect.
The reason is this.selectedRows.push(row) is not detected as a change from EventEmitter.
Though ...
Score of 0
0 answers
172 views
Issue to upload files to sentry with NX
I'm trying to upload the maps to sentry (self instance) but even getting code 0 as a outcome the files aren't showing on artifacts in sentry, i'm using Nx and uploading file from Angular App (nx 12.10,...
Score of 1
2 answers
217 views
I am calling 3 API's from angular, I want to wait API call until first API call is complete and return resu
if (article[0] === undefined) {
this.saveArticle(this.quickExpense.ExpenseArticle);
}
if (supplier[0] === undefined) {
this.saveSupplier(this.quickExpense.SupplierCode);
...