Can't bind to 'ngModel' since it isn't a known property of 'select'
<select class="form-control"
id="ddlBinderNoCurrent"
name="ddlBinderNoCurrent"
[(ngModel)]="BinderNo"
#ddlBinderNoCurrent="ngModel"
(ngModelChange)="getReport()"
required>
<option value="0">All</option>
<option *ngFor="let Data of dataForBinderNumberCurrent" [value]="Data.Binder_No">
{{Data.Binder_No}}</option>
</select>
already imported FormsModule import { ReactiveFormsModule, FormsModule } from '@angular/forms';
~~~~~~~~~~~~~~~~~~~~~~~~~