Starting with the "Datepicker in a popup" example from ng-bootstrap (here), I tried adding another button for date navigation; however, I can't get this to work.
Any ideas would be appreciated.
<form class="form-inline">
<div class="form-group">
<div class="input-group">
<input class="form-control" placeholder="yyyy-mm-dd"
name="dp" [(ngModel)]="model" ngbDatepicker #d="ngbDatepicker">
<div class="input-group-append">
<button class="btn btn-outline-secondary calendar" (click)="d.toggle()" type="button"></button>
**<button class="btn btn-outline-secondary calendar" (click)="d.navigateTo()" type="button">Nav to this month</button>**
</div>
</div>
</div>
</form>