Category "angular"

How to forward/pass windows authentication from client to another REST API in an ASP.NET Core app with Angular?

I am currently implementing an ASP.NET Core app with Angular as described here. With the help I got in this question, I was already able to get the application

Guard not re-routing to other component

I have these two guards @Injectable({ providedIn: 'root' }) export class DesktopGuard implements CanActivate { constructor( private router: Router, p

How to fill select options from a directive?

Here is a simple select: <select [(ngModel)]="..." name="..." id="..." required ...> <option *ngFor="let o of options" [ngValue]="o.value">{{o.l

ngb Pagination [(page)] attribute in angular is not working

I am using ngb pagination in my angular project. I have a table that shows 5 records per page and in that table i have a column named view. After clicking on vi

How to wait for angular requests to complete for automation testing

I am facing issues while automating Spartacus angular application using selenium java. Selenium is not waiting for all angular requests to complete. As the requ

ngb Pagination [(page)] attribute in angular is not working

I am using ngb pagination in my angular project. I have a table that shows 5 records per page and in that table i have a column named view. After clicking on vi

I can't distinguish roles with my implementation in DRF+Angular

I've made an implementation of a login system using django as backend and angular as frontend. In the backend the authentication is implemented via the view ass

Scroll to element on click in Angular 4

I want to be able to scroll to a target when a button is pressed. I was thinking something like this. <button (click)="scroll(#target)">Button</button&

Changing from a default theme to a custom theme removes cursor from MatInput, Angular 6

I wanted to change from a default Angular Material color scheme to a custom one. My problem is, when I did, the MatInput field stopped showing the blinking curs

How to call angular function when click p-dialog close(X) button?

How to call angular function when click p-dialog close(X) button? I have searched and just tried this (onHide)="cancel()" . But it's not working. Kindly sha

paths is not working in tsconfig.app.json as expected

I am using Angular to develop my website. And I wanna set a BASE_API for my project depends on prod or dev. Therefore, I add some code in environment export

Swap slots in Azure devops (angular+api), how to change Angular configuration for the target slot?

The configuration of the Angular app is the challenging part. During our publishing Job in Azure Yaml pipeline, we execute a "token" replacement to match the ta

Angular Material Datepicker DateClass

How can i update dateClass manually in a function? datepicker HTML <mat-datepicker [dateClass]="dateClass" #picker fxLayoutAlign="start start"

Angular2: Directives: capturing click event on children

I know it must be something very simple, but cannot figure it today - Monday :) so, I have a directive for a responsive table import {Directive, HostListener}

Angular 13 Prerender error could not find main bundle

I'm trying to pre-render my Angular 13 application. The command which I'm running is: ng run ipe:prerender --routes-file ./data/routes.txt The error that occur

statusText always shows OK for StatusCode 401 where as expecting "Unauthorized" for 401

I dont understand why do I always see statusText as OK for StatusCode 401, whereas expecting "Unauthorized" for 401. Below is my code snippit. Please help me to

Optional-chaining in Angular

I'm using optional chaining on an object which in turn gives this error after compiling the code For example const someObj = {pet_animals: {'dog', 'cat'}}; cons

unable to resolve dependency tree error for creating new angular project

so today I wanted to create a new Angular project using the command ng new <projectname> and I got this error: npm ERR! ERESOLVE unable to resolve depende

How to check if at least one of three input fields is filled with content in Angular 7

I am developing a web client with angular 7 and bootstrap. On my start page I have a form group with three input fields and a submit button which shall be disab

Template is not rendering in Angular2

I want to render html template by giving url in Angular2, But template is not loading. I am using visual studio code editor, Below is my code and structure.