You are missing FormsModule. Try importing like this-
import {FormsModule} from '@angular/forms';
and use it in AppModule like this-
@NgModule({
imports: [ BrowserModule, FormsModule, NgbModule ],
You can use ngbDatepicker like this too-
<input class="form-control" placeholder="yyyy-mm-dd" name="dp1" [(ngModel)]="newItem.EndTime" ngbDatepicker #d1="ngbDatepicker" required>
sample plunker: https://plnkr.co/edit/ZC3dOX9anbbNUMPEEd5W?p=preview
See if this helps.