Skip to main content

Questions tagged [angular2]

Filter by
Sorted by
Tagged with
-2 votes
1 answer
653 views

I have an angular SPA that runs in an office add-in (word) that I need to authenticate against Azure AD using Oauth2, consume resources from multiple apis and make graph calls. I have been successful ...
Josh Engel's user avatar
0 votes
1 answer
339 views

I am working in Angular project which is connected to REST API. Here we have an endpoint to create and update room types. POST endpoint for create and PUT endpoint for update exiting room types. Both ...
Nuwan's user avatar
  • 1
1 vote
0 answers
54 views

I am creating a grid using ag-grid. Here I want to create custom dynamic cell editors. Which show different edit fields based on the value inside the cell. I got the idea from here. This question is ...
Yannick's user avatar
  • 19
0 votes
1 answer
96 views

I am currently working on an internal storehouse management system for a certain company. They wanted it to be a web app so that they can use it without installation on any devices. We decided to ...
Valhaal's user avatar
  • 13
-1 votes
1 answer
147 views

I'm learning angular and have been reading about various backend solutions like direct db access, REST, and graphql. One thing I haven't seen addressed anywhere yet is how do you protect privileged ...
Kempeth's user avatar
  • 230
-2 votes
1 answer
263 views

I started a new job with a greenfield site in Angular to create a website from an old desktop app. I gave a presentation guided by my Supervisor who wants game style top icon menus to cut down on ...
Andrew Day's user avatar
2 votes
0 answers
4k views

I have created a Angular 7 web app data-driven display of navigation items and content to be shown when a nav item is selected. I have the following nav item interface: interface NavItem { title: ...
taylorswiftfan's user avatar
4 votes
1 answer
3k views

I am writing a potentially large web application using Angular 7, where I came across a design problem. My angular applications until now have been relatively small, so there was no problem keeping ...
Miha Jamsek's user avatar
1 vote
2 answers
607 views

Requirement There is some (for arguments sake) “global” application state that I am interested in injecting into components. Each candidate component should receive an immutable snapshot of the ...
Bryce Marshall's user avatar
0 votes
1 answer
144 views

So I'm trying to justify my case of using ASP.Net Core with Angular in a new application, where the .NET application does little more that provide the basis for the Angular app. It's really similar ...
bitshift's user avatar
  • 207
3 votes
2 answers
150 views

We are developing an angular 5 application that must run in different environments (dev, qa, int, uat, prod), and connect to different APIs depending on the environment. We have traditionally have ...
Jorge Riv's user avatar
  • 141
1 vote
2 answers
447 views

I'm using a service to manage state in Angular: import { Injectable } from '@angular/core'; import { Subject } from 'rxjs'; @Injectable() export class DrawingAreaService { itemChange: Subject<...
BrunoLM's user avatar
  • 247
0 votes
0 answers
79 views

I am confused (easily done). To me model is the data from the database sent back as JSON. When I think of that in an Angular context, when two-way binding is configured, it makes me think the ...
johnny's user avatar
  • 3,679
-3 votes
1 answer
1k views

I want to create Logout Functionality in Angular 5. The logout function will contain following pseudo code: Clear local storage authentication JWT token Redirect to login page My question is; where ...
Vinit Divekar's user avatar
0 votes
0 answers
62 views

We are planning to build a SPA in Angular 2+, which will use ASP.NET as a back-end. Since Angular doesn't really have a good integration to ASP.NET, we decided to create the SPA as a standalone ...
egurb's user avatar
  • 181
3 votes
1 answer
636 views

I'm a software developer, and the kind of developer we call "front end developer". I'm working on stuff like Angular JS, Angular 2 and others. I wanted to know how we can organize our front end code ...
Ghazanfar Khan's user avatar
2 votes
1 answer
3k views

I basically want to know if it is considered a good practice to persist the errors that happen on the client side of a web application (typescript/angular for example) by logging them to files? Or if ...
Uentee's user avatar
  • 401
3 votes
1 answer
162 views

When you are using frameworks like Angular, Angular2+, and React, the way you put data in the UI is by binding a property to an attribute of a UI element. On the other hand, when you're doing ...
Andy's user avatar
  • 187
1 vote
2 answers
3k views

I'm currently developing a Website that requires direct access to the client computer. Therefore I decided to split this project in this three main parts. There are some requirements that have to ...
Christian Klemm's user avatar
1 vote
1 answer
2k views

Hoping to get some guidance regarding version control of Angular2 project. Recently i started coding in Angular2, used angular-cli to create a brand new project and go through standard 5 minute setup ...
Aeseir's user avatar
  • 257
7 votes
6 answers
893 views

We are beginning development of an Angular 2 application. Our back-end will be using ASP.NET Core WebAPI. Although my subject calls out authentication, this also applies to any API service that is-...
Jake Shakesworth's user avatar
0 votes
1 answer
258 views

I used Angular 1 and React / Redux, and one thing I like about React / Redux is that there is a definite app state, and a middleware that can convert a promise into real data. In Angular 1, we often ...
nonopolarity's user avatar
  • 1,837
0 votes
1 answer
319 views

In Angular 2's official tutorial, any operation involving getting or saving a class necessitates using a service. For a Hero class, they had to create a HeroService to perform all HTTP calls. This ...
Zsw's user avatar
  • 163
18 votes
3 answers
11k views

I'm about to start developing a single page web application that is very simplified a multi user documentation system. The front end will probably use Angular2. The project has a short deadline, so I'...
Magnus's user avatar
  • 415
1 vote
0 answers
1k views

my question is related with Angular 2 Modules (@NgModule). Previously I’ve worked with angular 1.5.8 on huge business application and I’ve got used to Angular 1.x practices. Important background: ...
MPrzy's user avatar
  • 31