306,945 questions
0
votes
0
answers
10
views
Ionic Local Notifications not working consistently on lock screen (iOS & Android)
I am working on an Ionic (Angular + Cordova) app and using the @ionic-native/local-notifications plugin to schedule reminder notifications.
On iOS, interval notifications do not show at all when the ...
-1
votes
1
answer
34
views
Why is this Angular / TypeScript call to an API not returning the expected values?
I have inherited an application that has an Angular front end that calls into a C# API.
I have been asked to add some functionality that involves calling into the API but I am stuck. I have made a ...
-3
votes
0
answers
19
views
After changing the server IP, DSpace still returns the old IP in backend responses [closed]
Context:
I am working with DSpace 8.1 (Java backend + Angular frontend). I had to change the server IP address from 10.10.11.235 to 10.10.10.235.
What I’ve done so far:
In the backend, I updated /...
0
votes
0
answers
24
views
routerlinkactive not wokring in InnerHtml Angular
how i can use routerlinkactive inside InnerHtml ?
it not working becuase angular not support that .
i thinking a way to support this in innerhtml
i need add the "menu-active" class to
i ...
1
vote
1
answer
15
views
FormAssembly Quick Publish embed script only works in index.html, not when dynamically loaded in Angular component
I’m trying to embed a FormAssembly form into an Angular 17 standalone component.
The Quick Publish embed snippet works fine if I paste it directly into index.html:
<script
src="https://...
0
votes
2
answers
43
views
Angular Pie Chart: How to offset SVG text labels from leader lines?
I'm building a standalone Angular Pie Chart component. I have slices drawn with <path> and leader lines with <line>. I'm trying to place the <text> labels such that:
They are ...
-3
votes
0
answers
44
views
removeAllListeners not provided in one project but is provided in another [closed]
We have two projects. One has removeAllListeners and the other one doesn't. Seems to come from zone.d.ts. The working project is v17, this new one is v20.
let editButton = rowElement.querySelector('...
0
votes
1
answer
37
views
How to set custom colors for items in angular-calendar-timeline?
I’m using angular-calendar-timeline and have defined timeline items like this:
import { ITimelineItem } from 'angular-calendar-timeline';
// items declaration
items: ITimelineItem[] = [
{
id: '1'...
0
votes
1
answer
68
views
Angular 20 zoneless test - providing FakeService does not work
I have an Angular 20 app - here's the repo. And I have a "Sign Up" form, which in this test repo consists only of an Email field and the "Send verification code" button. When a ...
0
votes
1
answer
68
views
How to disable radio button on all levels in a recursive Angular form component based on a specific level's value
this is kind of a continuation of an improved version of an old question of mine
so basically I have a recursive Angular form and I’m using to manage a folder hierarchy. Each folder has a radio button ...
-2
votes
0
answers
24
views
setColumns() causes scroll reset in Angular-Slickgrid – possible version change?
I’m using Angular: 17.3.8 Angular-Slickgrid: 7.7.0 @slickgrid-universal/common: 4.7.0
code:
/*resizeColumnsByCellContent(angularGrid: AngularGridIns) {
angularGrid.slickGrid.setColumns(columnDef);
}*...
0
votes
0
answers
33
views
cssClass not working as expected in Apex Charts (in Angular)
The following simple piece of code isn't working as expected. Just using test data for simplicity.
constructor() {
const data = [
{ x: '2025-09-25 00:00', y: [12, 19], fillColor: 'rgba(0, 39,...
0
votes
0
answers
43
views
WebSocket STOMP connection 404 through Nginx + Angular frontend container
I have an Angular frontend container served with Nginx, and a Spring Cloud Gateway backend exposing a WebSocket endpoint (/api/v1/notification/ws).
Angular environment:
export const environment = {
...
0
votes
0
answers
26
views
NG0201: No provider found for TranslateService in Angular 20 micro-frontend remotes with Nx 21
I have an Angular 20 project using Nx 21 with a micro-frontend architecture. There is a host application and two remote applications. All remotes use standalone components.
The host app imports ...
2
votes
3
answers
99
views
How to use inject() in a child class that calls super()?
I'm trying to migrate an Angular component to use the new inject() function instead of constructor injection. However, my component extends a base class that requires constructor parameters.
import { ...