Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
93 views

I have a directive that reads src attribute and appends a DynamicComponent. It also sets an input property of DynamicComponent. @Directive({ selector: '[appDynamic]' }) export class InjectDirective {...
sanjihan's user avatar
  • 6,138
1 vote
1 answer
59 views

A-Service.component.ts ` import { Injectable, Inject } from '@angular/core'; import { BService } from './BService'; @Injectable({ providedIn: 'root', }) export class AService { constructor(...
Aishwarya Gharde's user avatar
0 votes
0 answers
60 views

My team and I are updating the Angular version of our app. We were using version 10.2.3 and migrated to 11.2.19 in angular/cli Before updating, our environments files were replaced by fileReplacements ...
Ewerton Oliva's user avatar
0 votes
1 answer
650 views

I have a project that I have just upgraded it from Angular 11 to Angular 16. When I try to compile (ng build) the fist two errors shown are these two: ./src/styles.scss - Error: Module build failed (...
Eddie's user avatar
  • 359
1 vote
1 answer
77 views

While submitting the form in angular, the data should pass like given below. Inside role menu only 1st index is passing. I want all the index data to be passed on submit. { "roleMenu":[{ ...
Rose's user avatar
  • 696
0 votes
0 answers
209 views

I am using ng-multiselect-dropdown version ^0.3.8 in my Angular project v11.It's working fine except one condition which occur when- 1- open select dropdown and search random thing which is not in ...
Reaper's user avatar
  • 412
0 votes
1 answer
99 views

I have dashboard where I can add multiple pages and widget to it which follows tabset structure. Widget includes amcharts, library charts. On default page amchart is rendering correctly but when I ...
pooja pathak's user avatar
1 vote
0 answers
569 views

i am upgrading my angular 11.0.2 ngx-admin dashboard project to Angular 15.2.9 during package update i got following error Error: node_modules/ng-particles/lib/ng-particles.component.d.ts:18:89 - ...
AG Mohamed's user avatar
0 votes
1 answer
57 views

I have some difficulties logging the year when you select the year. I managed to hide the month and dates already though. STACKBLITZ Simple datepicker <ngb-datepicker [(ngModel)]="model"...
Joseph's user avatar
  • 7,875
1 vote
1 answer
1k views

I am working on PrimeNG Table inline editing functionality in angular. If I enter blank record in the input box I throw an validation message but once message is shown inline edit option disappears. I ...
Bhushan Khaladkar's user avatar
0 votes
1 answer
52 views

In my Angular 11 application, I have a component that displays a child component containing some table filters: Parent <table-filters></table-filters> <table> ... </table> ...
SyncroIT's user avatar
  • 1,578
0 votes
2 answers
48 views

I wanted to do conditional http call and got the solution from Angular 11 how to make one of the http request in higher order mapping conditionally @Injectable({ providedIn: 'root' }) export class ...
Mukil Deepthi's user avatar
0 votes
1 answer
627 views

Using a Syncfusion EJS Autocomplete element in a search box. The issue being reported is that the user is not able to select the value searched I know the issue, is because the data passed to the ...
Jawahar's user avatar
  • 263
0 votes
2 answers
71 views

installed node verion 16.13 previously it was node v 14.18.1 npm ERR! code ERESOLVE Blockquote npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While resolving: [email protected]....
neel upadhyay's user avatar
2 votes
1 answer
2k views

In my unit test I want to call openDialog, openPdf, getPath with these three eventemitter that are in the ngOnDestroy method. How can I call them? component.ts: pdfPath: string = ''; // will be edited ...
Priyas Paulzagade's user avatar
0 votes
0 answers
72 views

for some reason I am not able to pick a file. here is my code <button mat-stroked-button type="button" (click)="filePicker.click()" >Pick Image</button> <...
user avatar
0 votes
2 answers
59 views

I have the following chart, which I want to use data that I have stored in some methods, the code for context: ... charts: any ... constructor( private measureService: MeasureService, ) { } ... ...
Amanda's user avatar
  • 81
0 votes
2 answers
2k views

I am currently working on updating the angular version of a project. It was v10 and I updated to v11. Fixed many errors, but ng2-charts keep throwing these errors on ng serve. Error: node_modules/ng2-...
SkyLordPanglot's user avatar
1 vote
4 answers
240 views

How can I get the value of param2 based on name in angular? http://localhost:4200/home#parma1=value1&param2=value2&param3=value3 Tried Below: constructor( private router: Router, private route:...
Sai Ram's user avatar
  • 103
0 votes
1 answer
760 views

I have a variable with a number, sometimes it's an integer sometimes a decimal. I want to show it with 2 digits after the point once it's a decimal, and without any decimal, if it's an integer. I mean,...
shr7's user avatar
  • 173
1 vote
0 answers
194 views

I have migrated Angular from version 8 through 11 in my application. There is a strange error where a particular component doesnot load and console throws the following error core.js:6210 ERROR Error: ...
Nirmal Kumar's user avatar
-1 votes
1 answer
666 views

I am working on angular app and want to have a progress bar as shown in attached image. I have seen many progress bar online but I am not able to find progress bar of this type. How I can get ...
user avatar
3 votes
0 answers
3k views

Deprecation array warning: 'createNodeArray" has been deprecated since v4.0.0. Use the appropriate method on 'ts.factory’ or the 'factory’ supplied by your transformation context instead. ...
user20060977's user avatar
1 vote
2 answers
7k views

I want create a new editable row by default when clicking "ADD NEW button". like below screen shot. When I click "+" button a new row will create. once I edit that row and click &...
hanushi-thana's user avatar
0 votes
1 answer
128 views

I have a child component that i want to add to my route outlet. But when i click nothing happens. Here's my routelink <li class="nav-item"> <a [routerLink]="['/student-...
Kael's user avatar
  • 169

1
2 3 4 5
14