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)
ngIf not working. Even if I do *ngIf="true" it doesn't show, neither does *ngIf="false"
I want hide a div if some variable is null, but *ngIf is not working even if I assign true directly.
tree.component.ts
import { Component, OnInit } from '@angular/core';
import { Tree} from '../model/...
hil-beer-t
Votes: 0
Answers: 1
Can I set a max and min value to a Mask on Angular?
Well I have two input fields, one for latitude and the other for longitude, that i wat to put a mask on, so the user can only put reasonables values and i wanted to set a max and min values to it and ...
Paula Bremenkamp
Votes: 0
Answers: 2
How to inject a service into a directive in angular 13
I have a directive called UniqueVersionNumberDirective, and I'm using it to validate a reactive form because I need other information besides the value of form control, And I can get this information ...
Safwen Soker
Votes: 0
Answers: 2
How to make angular radio group label red if nothing selected?
I have an angular radio group with two radio buttons. None of them are selected initially. In that case, I want the label for the group to be red. When one of them is checked, remove red.
.html
...
user3217883
Votes: 0
Answers: 3