I am new to angular 2
and angular 4
. I have just converted my application from 2 to 4. So, here I am facing an issue , On IE11, when receives focus, placeholder is removed and form control is set to dirty and pristine is set to false. On chrome / FF, this issue never occurs.
My Html is like -
<input type="text" class="form-control" id="processName"
[(ngModel)]="process.displayName" [disabled]="isProcessLoading"
#processName="ngModel" maxLength="64" pattern="^.*\S.*" name="processName"
placeholder="{{'PROCESS-FORM.name-placeholder' | translate}}" required
placeholderRequired [inputBinding]="processName"/>
I am not able to understand why this is happening ? Thanks in the advance .