All Questions
306,795 questions
0
votes
0
answers
10
views
Ionic Capacitor iOS cannot detect returning online after offline using @capacitor/network
I have an Ionic + Capacitor + Angular project using @capacitor/network. On iOS:
When the app goes offline (Airplane mode or no Wi-Fi), it sometimes (every time in my case) fails to detect coming back ...
1
vote
1
answer
27
views
How do I pass error state from Angular 21's new FormValueControl to the outside?
I have implemented a simple custom control using Angular 21's new FormValueControl, see StackBlitz:
export interface Test {
booleanValue: boolean;
stringValue: string;
numberValue: number;
}
@...
2
votes
1
answer
30
views
Angular 21 library build fails in pipeline: input<T | undefined> works locally but not in CI
I have a library component with a signal input:
// item.component.ts
import { Component, Input, signal } from '@angular/core';
@Component({
selector: 'item-component',
template: `...`,
})
export ...
-4
votes
1
answer
39
views
Implementing Y-Axis Navigator and Scroll in Highcharts (Angular) [closed]
i want to add navigator in y-axis highCart graph but i m not able to add some limitation in high chart or what else? give me another option if the possible. i add some code like
type: 'datetime',
...
0
votes
0
answers
28
views
Angular dialog popup with query parameters (without using materials package)
need to know the syntax for router.navigate for dialog Popup from a click event
below routing works ( as a non dialog webpage) & wanted convert into a popup !
but how do I open it as a dialog(...
1
vote
2
answers
64
views
Angular 20 Router always redirects to "/" whether if I load a full url or if refresh another url
I have developed a small project in Angular 20 using Spring-Boot as my backend (my project does not use nginx).
Every time I refresh my application on any url of the project or load a full url that ...
1
vote
0
answers
26
views
Angular OIDC authentication fails on iOS because of invalid nonce in state
I have an Angular (19) Application which uses the angular-oauth2-oidc (v19) package. I do initialize the OIDC code flow in the provideAppInitializer function. This application is called from inside an ...
Best practices
0
votes
0
replies
30
views
Angular Signal Forms with Resources
When building a component that uses Signal Forms to edit an object, the object needs to be loaded and then updated into the formModel. I want to use a pure Signal/Resource solution as opposed to using ...
1
vote
1
answer
36
views
Angular @for loop not updated with setInterval
I think I am missing something bigger regarding my problem but I simplified the issue as follows. My angular component class and view template is below.
When I run the app, "numbers" array ...
1
vote
1
answer
67
views
Angular route cannot match path(NG04002)
I have the following route:
export const routes: Routes = [
{
path: 'hello',
loadComponent: () =>
import('./hello/hello').then((c) => c.Hello),
},
];
In my app.config I have ...
1
vote
1
answer
68
views
Issue allowing selector usage within state class
I have this issue where I'm trying to access a selector (defined in another file) from within a state class, and getting the following error:
"Error: [createPropertySelectors]: A parent selector ...
Best practices
1
vote
0
replies
29
views
What is in Angular the correct term of a public property in an object component that contains form data or display data?
Look @ the following typescript code of an object component:
export class ItemComponent {
item: Item; // <-- term???
constructor(_itemService: ItemService) {
this.item = _itemService....
0
votes
0
answers
62
views
Multipart uploading with s3/lib-storage failed after updating from v3.712 to v3.948
My multipart uploading service for my website (using Angular) failed immediately after updating s3/lib-storage from v3.7xx to vc.9xx. This service has failed before when updating to v3.8xx, so I ...
0
votes
1
answer
89
views
How to replace Quill default link tooltip with a custom Angular component in ngx-quill?
I am using ngx-quill in an Angular 18 project and I need to completely replace the default link tooltip with a custom Angular form. I've implemented a custom Blot to handle additional data attributes ...
0
votes
1
answer
90
views
Angular 21 SSR with app-shell and withShell
I recently implemented SSR in my Angular 21 application using:
ng add @angular/ssr
Usually, for browser rendered Angular apps, I place a small loading indicator into my app-root to reduce the time ...