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

Is it possible to prevent the WhatsApp Web URL from opening in a new tab if a WhatsApp Web tab is already open? const msg = "*Greetings From "+this.previewData.unit_name+" "+this....
Vishnu .T.D's user avatar
1 vote
1 answer
327 views

I am migrating angular 8 app to angular 9.1.13, highcharts are implemented in my app and I am trying to update highcharts as well. For that I am updating highcharts from 6.2.0 to v7.2.2 and angular-...
Dev001's user avatar
  • 266
2 votes
1 answer
4k views

I'm converting Angular 9 project into Angular 17 and one component got angular-calendar plugin which was last published an year ago, in component.html it's implemented like this, <mwl-calendar-...
pl-jay's user avatar
  • 1,118
0 votes
2 answers
118 views

I am trying to update from 8 to 9 I get this: Using package manager: 'npm' Collecting installed dependencies... Found 85 dependencies. Fetching dependency metadata from registry... Updating ...
Paraskevi Papagiannoula's user avatar
1 vote
0 answers
107 views

I am trying to upgrade angular v9 to v17. So move with the approach by upgrading all packages that support version 17. After that, I fixed all the errors that came in the terminal. so at last I got ...
Deepak Singh's user avatar
-1 votes
1 answer
2k views

while migration from angular 8 to 9, i installed angular dependecies one by one using npm i (@angular/core, @angular/cli @angular/material ect ...) reading the documentation using ng update must fix ...
DEV's user avatar
  • 1,756
1 vote
0 answers
29 views

I have a angular lib and it is named 'ngx-qwe'. The 'ngx-qwe' quote a npm package 'ngx-asd'. The 'asd' package has build error when i build 'qwe' I use 'ng build ngx-qwe --configuration production' to ...
Allen's user avatar
  • 11
1 vote
1 answer
55 views

I have two types of observables A & B, they return the same item type but are accessible by separate APIs. With a list of id's which can be for either A or B. These observables return data for a ...
stack's user avatar
  • 11
0 votes
1 answer
252 views

I need to loop through a list of id's, checking each for an if condition and then based on the result of that if condition, get an observable from a method. I need to list the returned observables ...
stack's user avatar
  • 11
0 votes
0 answers
39 views

I have a list of components: public entrys: any[] = [ '<component1></component1>', '<component2></component2>', '<component3></component3>' ]; I want to display ...
Leticia Fatima's user avatar
0 votes
2 answers
354 views

My angular project is currently running in Angular 8 and I use HeroDevs\Hero-Loader (https://www.npmjs.com/package/@herodevs/hero-loader/v/2.0.1) for lazy loading of modules for a page containing tabs....
GokuSS3's user avatar
  • 313
0 votes
1 answer
64 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
3 votes
1 answer
266 views

I am using the following code for generating tree view in ngx-datatable: HTML: <ngx-datatable [rows]="rows" class="material" [loadingIndicator]="false" [...
Sunny's user avatar
  • 3,345
0 votes
1 answer
1k views

I want to open a component in new browser tab from another compoent. Here in my AppComponent html file has a button. when I click on this button I want to open MapComponent.html file in new browser ...
sandanuwan dharmarathna's user avatar
0 votes
1 answer
1k views

I have simple angular application with two component. I want to open one component in new tab. Here is my application. In my AppComponent.html file there is a button. when I click on this button I ...
sandanuwan dharmarathna's user avatar
1 vote
1 answer
101 views

I have the following code which uses ngrx for state management. I am relatively new to ngrx and while I understand that this.store.select is used to subscribe for any state change , I have the ...
VA1267's user avatar
  • 335
1 vote
1 answer
101 views

I implemented Chart.JS in my Angular 9 application. The chart is not rendered as expected. ngOnInit(): void { this.smdashboardservice.fetchSmDashboardData().subscribe(response=>{ //let data =...
Ramesh S's user avatar
  • 671
0 votes
1 answer
66 views

In my Angular 9 project, I want to split an array based on lable, then inside the array, I want to take count based on subLable. This is my array: [ {"id":1,"socialMediaId":0,&...
Ramesh S's user avatar
  • 671
1 vote
1 answer
3k views

package-lock.json creating problem for upgrading Angular 9 to 10 How can I create a fresh package-lock.json file and update Angular 9 to 10? I want to update Angular 9 to 10 and want to solve this ...
Krishnaraj P's user avatar
1 vote
0 answers
109 views

{ "name": "ez-new-architecture", "version": "0.0.0", "scripts": { "ng": "ng", "start": "ng serve", "build": "ng build", "test": "ng test", "lint": "ng lint", "e2e": "ng ...
Krishnaraj P's user avatar
0 votes
0 answers
502 views

I want to create a dropdown using angular multi checkbox, but I'm not sure how to do it in the "Angular way", that component will use in some places as a form control. <app-custom-...
user9081655's user avatar
3 votes
3 answers
5k views

I have an input field and code is as follows: <input type="Date" [(ngModel)]="data.date"> Format of data.date is "2023-04-01T00:00:00.000Z" . I want to show date ...
Rosy's user avatar
  • 99
0 votes
2 answers
1k views

I am working on mat tab. My code is as follows: <mat-tab-group> <mat-tab [label]="tab" *ngFor="let tab of lotsOfTabs">Content</mat-tab> </mat-tab-group> ...
Rosy's user avatar
  • 99
1 vote
0 answers
316 views

I am using Angular 9 and the angular.json file that include all my build process. Problem:: I want to hash files inside my assets folder but only the files directly inside the wwwroot folder are ...
Kivo's user avatar
  • 435
0 votes
1 answer
2k views

I need to call a function upon clicking a date in mat-datepicker. dateChange only calls a function if the selected date is changed. I need that function to be called if i click on the same date which ...
Vishnu .T.D's user avatar
1 vote
1 answer
2k views

I am trying to add style to the map. I go through the Mapbox site and try to understand how to read JSON style and use it in the application. So this is the JSON file I got from the Mapbox site. { &...
san test's user avatar
1 vote
1 answer
522 views

In my component.css file I have a class. .blur-map-report { filter: blur(8px); -webkit-filter: blur(4px); } In my component.ts file has property something like this hasError = false In my ...
san test's user avatar
0 votes
0 answers
50 views

when I click on the about ceo link on the dashboard component it should trigger load click function. about ceo component loading on dashboard component as in router-outlet // Dashboard component ...
Ram Chander Mothkoori's user avatar
0 votes
1 answer
1k views

I am getting data from a JSON file using an HTTP client. After using subscribe I am reading the JSON data. Here I want to check if the path is wrong to wish to send a 404 not found error message. ...
san test's user avatar
0 votes
0 answers
110 views

I'm redirecting to a payment form which is hosted on a bank page. This is the code I use to do that: const form = document.createElement("form"); form.method = "post"; form.action =...
Laziale's user avatar
  • 8,325
0 votes
0 answers
125 views

I am trying to read access token from JSON file. here from child component I am calling to MapReportConfigModel class. Inside the class I applied getMapConfig() method. using that method I am getting ...
san test's user avatar
0 votes
1 answer
425 views

I have a JSON file called reportConfig. I want read that data using angular and typescript. Here I have added my JSON file { "accessToken": "12345", "style": "...
san test's user avatar
0 votes
1 answer
116 views

I am passing a value by url in angular8. Not able to get the passing value from main component.Also id=2 will be visibl ein the url but gt should not visibile in the url.That's why i am using ...
EMahan K's user avatar
  • 479
1 vote
2 answers
91 views

I have an array of objects with large amount of data like This is the example data but I am having large amount of key pair values [{ "id": 1, "name":"name1", age: 11, ...
Gem's user avatar
  • 555
0 votes
1 answer
23 views

Trying to get the value from the url using ActivatedRoute. I am passing id value from dashboard component and trying to get that value from main component. But not able to get the value. If anyone ...
EMahan K's user avatar
  • 479
0 votes
1 answer
799 views

ngIf is not working in child component. There are two sibling components (Release and Assets) and both have a shared component (version-actions), and both the sibling components are essentially inside ...
shaunak das's user avatar
1 vote
1 answer
658 views

Trying to refresh the table data without empty the table data before refresh in angular but it is not working properly. How to resolve this issue. app.component.html: <data-table [data]="...
EMahan K's user avatar
  • 479
1 vote
1 answer
151 views

Recently upgraded to angular 9 able to run but got the below error in certain components where ng2-signalR is used. enter image description here enter image description here Here is the component code ...
mediocreCoder's user avatar
0 votes
1 answer
339 views

I have a component profile.component.ts in which there's a variable, this.candidate, which subscribes to and gets updated like this this.candidateSub = this.store.select(selectCandidateState)....
ABGR's user avatar
  • 5,263
0 votes
1 answer
1k views

I'm using a component ngx-datatable angular version 9. This component has the props [checkboxable]="true" to control the checkbox visibilit. Problem: I need to control this props ...
Luciana Oliveira's user avatar
0 votes
1 answer
256 views

Trying to remove one object which name is Test1 from the array object. I do not know how to remove that.If i did anything wrong in my code you can correct it. I have used service to update the array ...
EMahan K's user avatar
  • 479
0 votes
4 answers
2k views

Trying to update the carType value from another component.Updated value only working inside the callFun fucntion. Not able to get outside of the callFun function. I am trying to get the updated value ...
EMahan K's user avatar
  • 479
0 votes
1 answer
166 views

Trying to remove the value of dropdown from table component to ooptymodel component. I have used input and output decorator. But that is not working here. So, How to remove the value of dropdown from ...
EMahan K's user avatar
  • 479
0 votes
0 answers
425 views

Code was working fine before I upgraded angular 8 to 9. Upgrade has added Injectable decorator before the class and now its giving an error. I have deleted the other functions which are written but ...
Mazhar Ali's user avatar
-1 votes
3 answers
835 views

Getting the below error while trying to run the command npm install after the angular migration to version 9. Error npm ERR! code ERESOLVE npm ERR! ERESOLVE could not resolve npm ERR! npm ERR! While ...
Newbie's user avatar
  • 1,545
1 vote
1 answer
1k views

I'm working on a project making use of MatDialog on several instances. In this particular example, I use two distinct modal dialogs in similar manner, the thing is one works properly as it should, and ...
mformigo's user avatar
  • 105
0 votes
1 answer
247 views

I'm using Socket.io and Angular 9 to build chat functionality. As shown below, I created a service and called for socket connection and event handling. import { Injectable } from '@angular/core'; ...
Dargha Patel's user avatar
0 votes
0 answers
177 views

I am getting this error that Partial Custom TreeviewItem is missing following properties. The problem is that CustomTreeviewItem is Extended with Treeviewitem class which is the part of 3rd party ...
ammad khan's user avatar
  • 1,164
0 votes
0 answers
626 views

We have recently upgraded from angular 8 to 9 and started getting this error. Argument of type '(value: any[], key: number) => void' is not assignable to parameter of type 'CollectionIterator<...
ammad khan's user avatar
  • 1,164
1 vote
1 answer
930 views

Currently I am using Ag Grid v27.3.0, and contents inside filter list in Set Filter not being displayed correctly as shown in the below image. Data is not getting wrapped correctly. Below is what i ...
coder12349's user avatar

1
2 3 4 5
39