python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Angular reactive FormGroups loop
The goal is to have a dynamic component to automatically render required error messages for a given reactive form.
.component.html
<ng-template #errTpl let-control>
<div *...
David Wolf
Votes: 0
Answers: 0
Page Break not working with ngFor in Angular 13
I've done some searching around for a solution, but page breaks in an Angular 13 component will not break pages.
I am using a simple ng-template (extra fields removed for readability):
<ng-template...
ewomack
Votes: 0
Answers: 1
"Property does not exist on type component" error Angular template
I have a file, platforms.ts, where is declared an array as following :
export const platforms: Platforms[] = [
{
name: 'Instagram',
value: 'instagram'
},
{
name: 'Facebook',
valu...
Denis Lebon
Votes: 0
Answers: 1
Angular: how to initialize variable inside *ngFor
I have an Angular template:
<li *ngFor="let item of list | keyvalue" let-rand="random()">
<input type="radio" class="form-check-input" id="radio...
A. Gladkiy
Votes: 0
Answers: 3