307,030 questions
0
votes
1
answer
24
views
Multiple Requests at the same time from the same user
I'm facing an issue when submitting the verifyPINForm form. In some cases, the request for verifyOtp is being sent twice at the same time, which is causing issues on the backend side.
the component ...
0
votes
0
answers
7
views
If show template with disabling a form at the same time - then a form not disabling
Working on a form with two template.
It seems that if we change template + setting form as disabled, the form is not disabling. But if we do it with separate thread via setTimeout, we have corrent ...
0
votes
0
answers
6
views
Accessibility Issues Loading mfe-base Page in Shell Application
I'm experiencing accessibility issues when loading a page from my mfe-base. When loading my shell application, the displayed page is from mfe-base. The focus is being assigned to an image, which ...
0
votes
0
answers
18
views
NgClass doesn't work if it depends on a variable which change from an Angular Material Dialog
Good evening.
I have an Angular 17 component which class depends on a variable.
Clicking it an Angular Material dialog opens. The task is to change the class of my component when I close the dialog.
...
2
votes
2
answers
61
views
Infer type of second argument from first argument
I want to create different view modes with different configs. To instantiate the component I want to create a factory class that I can call with a class type and the config. The type of the config ...
0
votes
1
answer
29
views
ngx-bootstrap date picker with time (24-Hour Time)
How to set ngx-bootstrap bsDatepicker withTimepicker to use 24-hour format (disable showMeridian)?
I'm using ngx-bootstrap's with the withTimepicker: true option. It shows the time picker correctly, ...
0
votes
0
answers
46
views
Clarification on ts-cacheable Cache Busting Policy
I'm considering using the ts-cacheable library (github - angelnikolov/ts-cacheable) for a personal project, and I need some clarification regarding its cache management policy, specifically concerning ...
0
votes
0
answers
48
views
mat-menu loses input focus when filtering scrollable content
I'm using Angular Material's mat-menu to create a dropdown with a search input and a scrollable list of items (cars). Everything works fine when the list is small. But when the list height exceeds ...
0
votes
1
answer
46
views
Expand All/Collapse All column in Angular Material
I want to be able to make the Actions column on the data table to have the ability to expand and collapse all of the rows. Is there a way to do that. I am trying to make it a link but not sure how to ...
0
votes
0
answers
26
views
Can I use Angular Universal prerender with ionic framework?
I'm trying to use angular universal prerendering with an Ionic Angular app.
To test I created a simple app with Tabs template.
When I run "ng run app:prerender" the cli correctly generate ...
1
vote
1
answer
58
views
Multiple resource API calls in Angular
I am trying to understand the new Angular resource API. One typical problem is to fetch several HTTP endpoints, combine the data and use it.
My current approach looks like this:
name = rxResource({ ...
0
votes
0
answers
36
views
Angular compiles but should throw an error [closed]
I'm using angular 16 and I need to configure my app that throws an error when, for example, I have on function in the html file but this function doesn't exists in the ts file.
Any idea how can I do ...
0
votes
0
answers
27
views
Line chart> (swimlane/ngx-charts) In zoom-in mode, the chart marker is displaying the value of the next data point instead of the selected one
1. Marker Display Issue in Zoom-In Mode
When zooming into the line chart, the marker/tooltip is showing the value of the next data point instead of the currently selected one.
2. Tooltip Position ...
1
vote
1
answer
30
views
How to dynamically import a date-fns language module in an Angular Ionic application
I am replacing moment with date-fns in my Ionic Angular project.
I run with many possible languages, so did not want to statically import them all, and make the bundle bigger.
I am trying the ...
1
vote
1
answer
53
views
Generic Function Returning Null [duplicate]
I have a generic function that makes an ajax call. When I do a console.log in the success. The object prints out correctly. But when another function calls that function and tries to assign it to a ...