Relative Content

Tag Archive for angular

Automatic save without clicking a button

I need to implement a list of items in angular(7).
The list contains input text and remove button.
The requirement is to enable automatic save.
How to do it correctly?
And how to avoid multiple requests?

Automatic save without clicking a button

I need to implement a list of items in angular(7).
The list contains input text and remove button.
The requirement is to enable automatic save.
How to do it correctly?
And how to avoid multiple requests?

Automatic save without clicking a button

I need to implement a list of items in angular(7).
The list contains input text and remove button.
The requirement is to enable automatic save.
How to do it correctly?
And how to avoid multiple requests?

Angular 19 Module Federation: Remote Module Load Fails with RouterModule LoadChildren

I’m working on a large monorepo project using NX and Angular 19, with multiple remotes configured through Angular’s Module Federation. This architecture allows us to split the application into smaller, independently deployable micro-frontends. Each remote represents a distinct feature module, dynamically loaded at runtime. The setup has been stable and working perfectly in Angular 14, both locally and in production. However, after updating to Angular 19, none of the routes pointing to remote modules work—they simply fail to load. Routes that are part of the main application (local routes) work as expected, but any attempt to navigate to a remote route results in an unresolved module or a silent failure. Debugging attempts suggest that the issue lies in how remote modules are being resolved by the router, but I haven’t been able to pinpoint the exact cause. Here’s a detailed breakdown of the issue:

Angular ActivatedRoute by ID return null or Undefined

I want to pull data from the API to the dialog form by id for editing using activatedroute. When I define the ID section in URL, it returns as undefined or null. However, when I enter ID section in URL manually, I can pull data into the form. I think there is a problem with activatedroute. I would like to ask for help from those who have knowledge of this subject.