5,203 questions
0
votes
1
answer
238
views
MSAL V1.x how to update client id and authority dynamically (i am using angular 7)
I am using the @azure/msal-angular version ^1.1.2, and I am facing an issue on how to update the MsalModule dynamically
i am refering the code base https://github.com/AzureAD/microsoft-authentication-...
-1
votes
1
answer
663
views
Error for angular 7.2 Data path ".builders['application']" should be object
I have an angular project that I have to clone first from a git source before proceeding with working on it, I cloned it, the angular version was 7.2, My nodejs i updated to 20.15.1 LTS and angular is ...
0
votes
1
answer
54
views
How to add custom message in dropdown in Angular 7 instead of ngui-auto-complete in this code?
I tried adding a custom message in the dropdown when no character matches are found in the dropdown list. Here is the code for the same, which uses ngui-auto-complete to show "No Result Found&...
1
vote
1
answer
50
views
How to expand and collapse table row in angular 7
I am trying to expand and collapse each table row without adding new properties(expanded1 and expanded2) in the json data. How to do it. Is it possible or not?
app.component.ts:
export class ...
0
votes
1
answer
718
views
How to expand row in a table using typescript or javascript
I have used angular 7.I am trying to expand and collapse table row by clicking name and place. But it is not opening properly.
If i click place name, that place details only i want to show. But in my ...
1
vote
1
answer
292
views
matMenuTrigger openMenu not showing the menu when called with *ngFor
Good evening, I have this component:
HTML
<button mat-menu-item
#leagueMenuTrigger="matMenuTrigger"
[matMenuTriggerFor]="leagueMenu"
(mousedown)="onMouseDown(...
0
votes
1
answer
101
views
Angular 7 stripping out duplicate properties in SCSS
Angular SASS (.scss) stripping out properties. How do I prevent this so I can embed duplicate properties for cross browser compatibility?
To duplicate, create a new angular 7.2 project
{
"...
0
votes
1
answer
17
views
I am facing one peculiar issue while running angular application [Angular 7]
Angular is compiling continuously when I save the changes. I don't know why I am facing this issue.
This is the issue
Some additional details :
Application specific package versions
Global package ...
0
votes
0
answers
138
views
Angular 7 - PDF file not opening
I am using Angular 7 for front end application and CakePHP for backend. On click of a button, a pdf file should open in the new tab. When I am trying to open it, instead of opening pdf file(url:"...
0
votes
0
answers
48
views
regex not working for angular 7 input pattern
What I tried
field: {
"pattern": "((?!(demo case)).)*"
}
<input matInput spellcheck="false" [formControlName]="field.key" [id]="field.key" ...
1
vote
1
answer
237
views
Ionic app - the app references non-public selectors in Payload determineAppInstallationAttributionWithCompletionHandler:, lookupAdConversionDetails"
Unable to upload ionic 4 app to the apple app store ( Xcode version - 14.2 (14C18) ). we are getting below error.
the app references non-public selectors in Payload ...
0
votes
1
answer
499
views
Angular 7 - Post method called twice on 400 Bad Request
I have a angular application with login page. We have set the max no.of retry attempts which is configurable. The login page is working as expected on success. The issue is on failure. The no.of retry ...
0
votes
1
answer
452
views
Logout action is being dispatched from component but not a reducer and not effect called
I have a topbar component in an Angular application where an Action is dispatched for logout
this.store.dispatch(new Logout());
now this supposed to call Reducer which will return initial state
...
-1
votes
2
answers
177
views
What angular version I need to run SurveyJS..?
Recently I have been facing issues in SurveyJS with angular v7, Earlier it was easily working on angular version 7 but now For few months I am facing error of 503 connection error. I have tried every ...
0
votes
0
answers
367
views
Error in Typesense Node Modules When using Typesense with Ionic 4
I am getting the following output when running ionic serve in my project directory:
ERROR in node_modules/typesense/lib/Typesense/Documents.d.ts(2,13): error TS1005: '=' expected.
[ng] node_modules/...
0
votes
1
answer
552
views
Duplicate id attribute value "x" found on the web page
I am using Angular 7 - three components [a, b, c] use an input element that has the id of [x] however, component [b] has 4 input elements using id of [x] aswell. This raises Accessibility Issues - as ...
0
votes
2
answers
556
views
Angular component does not update correctly using @Input and a Service
I'm using Angular version 7 with a component that has a serie of divs being rendering according to the data coming from an @Input and it should be updated due the service response, nevertheless the ...
1
vote
1
answer
900
views
load multiple script tag in angular component
I'm trying to load a series of scripts from a component of an angular application, I want to do it in a specific component and not in the index.html but I can't find a way to do it, any help or advice?...
0
votes
0
answers
357
views
I am unable to find some of the features in covalent/core version 4 for Angular 12 which are found in version 3
I am using covalent/core version 4 in my Angular 12 project and unable to find the covalent/core/loading, covalent/core/media and few more libraries which are available in the covalent/core version 3 ...
1
vote
1
answer
1k
views
Filtering of Array using filter() works fine, but doesn't change in frontend
component.ts
searchVideo = (search: string) => {
this.query = search;
if(this.videos.length == 0){
this.filteredData = [];
}
if(!this.query){
...
-1
votes
1
answer
2k
views
Why my min and max validation is not firing?
I have the template like below:
<form class="form" [formGroup]="configWeightage">
<div class="example-container">
Enter value in between 0 to 100 <...
0
votes
0
answers
790
views
Why angular redirectTo is not working on IIS?
I am new to Angular deployments. So today I tried deploying an angular app to local IIS.
In one scenario, I was able to see the UI.
Scenario 1: Initial route should be navigated to “sample” and ...
-1
votes
1
answer
1k
views
Negative validation not working in Angular
I have the following HTML Angular tags, which need to trigger a validation error when there is a negative value entered in any of the groups of textboxes (dynamic array).
<tr *ngFor="let order ...
-2
votes
2
answers
2k
views
How to Sort and Map an Array on Angular 7
i have this array:
myArray = {
[0]{priority: 1, percent: 90, correct: true}
[1]{priority: 1, percent: 20, correct: true}
[2]{priority: 2, percent: 50, correct: true}
[3]{priority: 2, percent: 50, ...
0
votes
1
answer
889
views
Angular 7 - How to implement sorting in mat-table
I am trying to implement sorting in <mat-table> using Angular version 7.3.
Below is my source code:
<table
mat-table
[dataSource]='dataSource'>
<ng-container matColumnDef="...