I am using NG Bootstrap DatePicker: https://ng-bootstrap.github.io/#/components/datepicker/examples
My first attempt was updating the inout as it was just one formControl, now I have control of the <ngb-datepicker> and binding formControl property [formControl]="control" the form output is correct but my input field is not showing the selected date please help ``` <div class="input-group"> <input type="text" [formControl]="control" [minDate]="minDate" [maxDate]="maxDate" placeholder="yyyy-mm-dd" name="dp" ngbDatepicker /> <ng-template #popContent> <ngb-datepicker [formControl]="control" (navigate)="date = $event.next" name="dp" ngbDatepicker ></ngb-datepicker> <ngb-timepicker [formControl]="control"></ngb-timepicker> </ng-template> <div class="input-group-append"> <button class="btn btn-outline-secondary calendar" placement="left" [ngbPopover]="popContent" popoverTitle="Date and Time selection" type="button" >SELECT DATE </button> </div> </div>``` -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/angular/24b9ff0b-9f33-4ed8-95ba-d48d248a330an%40googlegroups.com.
