How can I show a custom text in the input, when using ngbDatepicker?
I’m using ngbDatepicker in my reactiveForm, structured like this in my reservation.component.ts: myReactiveForm : MyReactiveForm = this.formBuilder.nonNullable.group({ // SOME OTHER FORM GROUPS BEFORE… reservationDetails: this.formBuilder.nonNullable.group({ guests: this.formBuilder.nonNullable.control(1, [ Validators.required, Validators.min(1) ]), reservationDate: this.formBuilder.nonNullable.control(”, [ Validators.required ]), reservationTime: this.formBuilder.nonNullable.control(”, [ Validators.required ]), notes: this.formBuilder.nonNullable.control(”) }) }); In my reservation.component.html, I show my datepicker with these lines… Read More How can I show a custom text in the input, when using ngbDatepicker?