Click here to Skip to main content
15,914,642 members
Everything / Angular11

Angular11

Angular11

Great Reads

by Yaseer Mumtaz
ASP.NET Core Microservices With Angular 11 Front End, API Gateway, Redis and SQL Server

Latest Articles

by Yaseer Mumtaz
ASP.NET Core Microservices With Angular 11 Front End, API Gateway, Redis and SQL Server

All Articles

Sort by Score

Angular11 

20 Feb 2022 by Member 12160780
As per my research most of the cases we found that with backend asp.net core they use angular framework. My question is why they choose it ? Need to know elaborately. If I build a rest api with .Net core then which framework should we use ? ...
15 Jun 2022 by OriginalGriff
If you don't understand an error message, google it: typescript cannot read properties of undefined - Google Search[^] The top hit explains the problem: Resolving the TypeError: Cannot Read Property of Undefined in JavaScript[^]
15 Jun 2022 by Richard MacCutchan
if (id) { console.log(id); this.productService.getProductById(id).subscribe( product => this.product = product) } else { console.log('id is not defined') } this.updateForm.setValue( { 41*** productId:...
9 Aug 2021 by Richard Deeming
That's not something your code needs to worry about. It's up to the browser and/or the OS to determine whether the certificate is valid or not. If the certificate is not valid, then you need to contact whoever is in charge of managing the...
4 Oct 2021 by khaled Eisa
i tried to setup angular project with angular 8 but unfortunetly I installed v 12 and I figured it at the end of the project so I tried to downgrade so that is what happened after trying dependencies": { "@angular/animations": "~12.2.8", ...
24 Dec 2021 by G.Mahendra
Hi All, I have recently started working on angular12 and I am trying to add multi-Stepper with progress bar to my angular code but I am unable to get how to do this. Also I want to add a sub stepper on each step. How to add progress bar...
20 Feb 2022 by Graeme_Grant
The answer is it depends on what the solution is trying to achieve. Angular is not for the faint of heart as it has a steep learning curve. React.js is very popular and has a lot of community and 3rd party support. Microsoft's answer for SPA...
17 Mar 2022 by David Ogbodu
i have been on this problem for a while, haven't figured a way around it, i was actually building this audio player website and everything seems working well except from the audio player itself, after fetching all the resources from my spring...
29 Mar 2022 by csrss
It has to be super simple but I just cannot get it at all. I have a base class, and then a class which inherits from base class. Base class has a c-tor, child class does not. Base class is never provided, only child class. Child class has one...
3 Apr 2022 by guddi chhaterpur
hello, I have a method called onShowList() and I want to write a unit test case for it, I am a beginner with writing a test cases so please help public onShowList(): void { this.showList = !this.showList; if (this.showList) { ...
12 Apr 2022 by Rajeev Jayaram
Check if you have added .AddDeveloperSigningCredential() in ConfigureServices. The issue of 'No signing credential' is most likely due to this. Let us know if it worked.
12 Apr 2022 by shriraksha dk
I am new to test case in angular. I have a input type checkbox which has element ref id of #checkbox. Below is code snippet. How to write test case for masterToggle function in below code? What I have tried: HTML code: input type="checkbox"...
13 Apr 2022 by ahmed_sa
i work on web page web api and angular 11 this page take input file excel and get result on excel file as output i get error i don't know what is the reason of error and how to solve it error as below Access to XMLHttpRequest at...
21 Apr 2022 by Gowri Shanker
Currently i'm working on pagination and showing agm-maps in a project. And the problem is that the ngx-pagination is not working if i click the icon with a click event attached to it. don't know where i'm going wron can somebody help me with...
10 May 2022 by Railcats
I'm trying to POST my local storage to an API, but everytime I do it, I get a status: 400. Title of error says '"One or more validation errors occurred."' I must be doing this wrong. I'm trying to loop through all the key value pairs and then...
21 Jun 2022 by Miguel Maya Garcia
I have two list to refresh for two different event (one post, one delete). The issue is that when delete is called, It calls also the post method. So I delete someting, but the post re-post it :p The lists to refresh are the profileUser$ and the...
15 Jun 2022 by termine1
in my productservice.ts I got : getProductById(id: number){ return this.http.get(`${this.baseUrl}/getProductById/${id}`); } ``` in my UpdateProductComponent: ngOnInit() { this.initializeForm(); const id =...
30 Aug 2023 by Pete O'Hanlon
As you are subscribing to the service, I have to assume that the load is being triggered from there. Have a look in the network tab in your browser and see if any data comes back from the call. As you are using next, I would suggest that you...
30 Aug 2023 by Andre Oosthuizen
It looks like you're trying to bind the value of 'option.weightCoffee' to the 'select' element using 'formControl', the correct syntax for binding a form control to a select element is using the [formControl] directive. Your code should be -...
3 Aug 2021 by Yaseer Mumtaz
ASP.NET Core Microservices With Angular 11 Front End, API Gateway, Redis and SQL Server
9 Aug 2021 by Member 15008824
How angular 11 application trusts server CA certificate Angular 11 application uses HttClient library to call to REST APIs, now need the ways to trust server(API) CA certificate. What I have tried: Need approaches to trust server CA...
11 Mar 2022 by Mahmoud mohd
how can i make my code appear on runtime when deployed ? should i parse it and how do i parse it ? and on the console.log it shows me the array of colors getRandomColor(){ console.log('colorsss') // let colors = ['#33FFFD',...
28 Mar 2022 by shriraksha dk
I am using below input tag in table and been shown in each row. If I try to enter any input field moves /flips with table row. How can resolve this? What I have tried: code:
31 Mar 2022 by ahmed_sa
zip files not downloaded on angular 13 although zip files created and api not give error ? I work on application asp.net web api core 2.2 and angular 13 . I make web api compress files and create it first as zip files . then downloaded on my...
12 Apr 2022 by Member 359326
I have generated an Angular with .net core 6 from VS2022 template (authentication = individual). I added sql database and compiled it and it works in development. However, it did not work in the IIS mode (production). I ended up to get a...
16 Jun 2022 by Joshna J U
component.ts: ------------- this.createForm = this.fb.group({ equipments: [this.data.equipments || "", [Validators.required]], storage: [this.data.storage || "", [Validators.required]], users: this.fb.group({ admins:...
17 Jun 2022 by termine1
Forms not being populated with values even though its there in browser > developer tools console.log(data); { "productId": "3", "productName": "G500 cpu", "productDescription": "gaming computer", "productCategory": "computers", ...
13 Sep 2023 by Member 11759154
//----------Model.ts==========...