All Questions
1,262 questions
1
vote
1
answer
65
views
How to create Angular mutually exclusive checkboxes and filter
I have 4 checkboxes that filter based on its name/identifierValue. When the page loads ALL should be selected. If I click any other box 'ALL' should deselect and I then filter based on the selection....
1
vote
1
answer
46
views
How to properly filter material table using angular using checkbox
I have a set of data in which is filtering by checkbox. However it only works one time. For example. I have 2 distinct company If I check company it filters and shows two rows and I uncheck it shows ...
2
votes
1
answer
67
views
How can I automatically format dates according to the OS's locale in Angular without manually setting LOCALE_ID?
I am building an Angular application and want to format dates based on the user's operating system locale (or browser's default language) without manually setting the LOCALE_ID for each case.
While ...
2
votes
2
answers
104
views
Angular JS Angular 18 hybrid routing
I have an angular js/angular 18 hybrid application which is working, but what I am trying to do is migrate the routes of the customer users like this:
.state('customer', {
url: "/...
-1
votes
1
answer
91
views
How to Securely Apply a Blur Effect to Images in an Angular App to Prevent User Manipulation? [closed]
I'm working on an Angular application where the images displayed contain sensitive information, and I want to apply a blur effect to these images. However, I don't want users to be able to inspect the ...
1
vote
1
answer
48
views
In angular, ng-repeat breaks the options into options again
My js array is ["standard", "premium"]
When I click on the dropdown option for the first time, it’s showing option as standard and premium. After choosing any one of them the ...
0
votes
1
answer
94
views
Invalid description, no ice-ufrag attribute at level 0 Error
I was trying to implement a sipjs session.
initializeSip() {
const uri = UserAgent.makeURI('sip:[email protected]'); // Replace with your SIP URI
if (!uri) {
throw new Error('Failed to create URI');
...
1
vote
1
answer
173
views
URI malformed issue from @angular-devkit's dependency library Vite
Just created new angular application (version - 17.3.9) using command ng new url-test-app
then start application using command - npm start
Now I navigate to http://localhost:4200 . It works fine
Then ...
2
votes
1
answer
81
views
How to maintain query params when redirecting in Angular RoutingModule with redirectTo?
Summary
I want to redirect in my Angular RoutingModule from one path to another while maintaining the query params. However, when the redirect completes, the query params are not present anymore.
The ...
0
votes
1
answer
146
views
Acquire token silent using MSAL v1 not working in my ANGULAR JS application
I am working on ANGULAR JS application with MSAL v1, how can i achieve to get token using acquire token silent ,in my enterprise system third party cookies are blocked in chrome
i tried using MSAL v2 ...
0
votes
1
answer
96
views
Trying to assert a date format in Cypress that has white space
I am trying to write an assertion in my Cypress test that checks that the date format is mm/dd/yyyy.
Right now, the assertion is failing and I think it's because there is white space at the start and ...
0
votes
0
answers
87
views
Angular Nested CDK Drag and Drop responsiveness issue
I have been scrapping together as much as I could trying to get this to work from everywhere on the internet but I have reached a point where I just don't know how to proceed. I am using Angular 18 ...
1
vote
1
answer
42
views
How to correctly calculate canvas coordinates when scale is applied?
I am working on a canvas application and I want to add a zoom feature. However, I am struggling to draw pixels after any zoom thats greater than 1 is applied.
It just draws the pixel on the place, ...
0
votes
1
answer
74
views
angular 13 SSR, assign a value to a property in onInit, causes ngOnInit() to be called multiple times
In app.component.ts, I assign a value to a property in onInit, and it used in html.
data:any = [];
ngOnInit() {
this.service.getData().subscribe(res => this.data = res);
}
Any idea why ...
1
vote
1
answer
468
views
Angular JS to Angular 18 migration
I'm trying to create a hybrid Angular JS Angular 18 application, and at first the application was running fine with this setup:
upgrade-module.ts
import { DoBootstrap, NgModule } from '@angular/core';
...