when the view is rendered for first time it isn't work until i press F5 to refresh the whole page then it works fine i am using two way data binding for the input this is the property declaration searchKey:string
Before Refresh
After Refresh
<div class="col-sm-4">
<div class="form-group form-float">
<div class="form-line">
<input id="search" type="text" name="search" [(ngModel)]="searchKey" class="form-control">
<label class="form-label">Search</label>
</div>
</div>