I am trying to add several txt files to a zip file and download it locally. For this, I am using the libraries: JSZip and FileSaver. This is the "typescript" co
I'm experiencing an issue with how my angular app loads. For some reason on viewing the application online regardless of the route, the html structure defaults
I have written the code for dynamic accordions it showing the design correctly but functionalies(hide/show) are not working. Below i have shared the code please
I'm new to Angular and have a requirement regarding routing between components. The app consists of 3 components: component_a -> component _b -> component
I have created an angular library using angular cli. I can use it locally but when I publish it to npm, I cannot use it in any angular applica
I have an image with mouseenter and mouseleave attributes. When the cursor first hovers this image, it calls startCalc(id) method and in this I am calculating s
I'm using the latest AWS-Amplify's authentication component. It can logged in successfully but after login I need to sent the route to another url which I can't
I'm using angular 1.5.9 and a component library made with web components. When loading the library using unpkg, everything works fine: <script src="https://u
I'm looking to ignore a path (in this example /backexample) in my RouterModule which is present on my proxy.conf.json for calling my back api. I'm using Angular
i like to limit input to accept only [a-z] letters and also composite keys like ctrl+A , ctrl+C , etc to handle natural behavior of html input . how can i do it
search(value) { if(value.length > 3) { setTimeout(() => { searchApiCall(); }, 2000); } } <input type="text" class=
I am getting following error Issue is i have a abstract class which is not getting injected, i dont know how to inject abstract class. looks like the issue is
this is my Service. import { Injectable } from "@angular/core"; import { Subject } from "rxjs"; import { Observable } from "rxjs"; import { filter, map } from "
When I try to run, "ng serve" or any other ng command, I'm getting "zsh: permission denied: ng" error. I'm using MACOS and already checked other posts to fix th
I try to implement a simple login/logout mechanism in an angular/rest api training application ! Even after a logout() in my authentication.service.ts : import
I need to make sure there is a single subscription (e.g. within the constructor) and chain the flow of events from another component to an observable property o
I would like to create a box plot and customize the hover text. Creating the boxplot was successful. However, the goal is to have measurement title, min, q1, me
This is my Mongoose Schema const mongoose = require('mongoose'); const ListingSchema = new mongoose.Schema({ listing_id: { type
I want to add a chart in my project on child component but it doesn't work,I have some components: menu,header,section , I want to click on an option in menu n
I'm trying to access a variable inside a subscribe function but it returns to me undefined, please any suggestions: export class InboxmanagementComponent implem