skip to Main Content

Html – How can I disabled this input by choosing 'immediately_apply' radio button in angular?

I want to disabled this two inputs with choosing immediately_apply radio button here my html code: <label>repeat mode:</label> <mat-radio-group class="repeat_group" formGroupName="is_cron"> <mat-radio-button class="repeat_button" id="1" value="daily_repaet">daily</mat-radio-button> <mat-radio-button class="repeat_button" id="2" value="immediately_apply">immediately</mat-radio-button> </mat-radio-group> <div class="field"> <label>start:</label> <mat-form-field appearance="fill" class="time_field"> <mat-label>minute</mat-label> <input #cronselector_disabled type="number"…

VIEW QUESTION

Html – Failing to align side-by-side with bootstrap. One of the items is an angular component

<form> <div class="row form-check"> <label class="form-check-label" for="communes">Sélectionnez une commune :</label> <app-communes id="communes" anneeCOG="2023"></app-communes> </div> </form> <div class="row"> <div class="carte_metropole" id="carte_metropole" ></div> </div> [...] fails to display the label and its selector the way I want: (I would like to have:…

VIEW QUESTION
Back To Top
Search