I have an Angular Reactive form with a kendo grid. When I double click a record in the grid I have a kendo window popping up to allow the user to edit the details of the selected record. I am able correctly load the values of some of the other controls like the textbox and dropdown lists, but the masked textbox value does not want to display. I'n not sure what I'm doing wrong. Here is my html markup and component code. If I use interpolation then its showing me the value in the div. As you can see in the screenshot
<div class="col">
<kendo-formfield>
<kendo-label [for]="Mobile" text="Mobile"></kendo-label>
<kendo-maskedtextbox
formControlName="Mobile"
#Mobile
[includeLiterals]="false"
[(value)]="mobileValue"
[maskOnFocus]="true"
[mask]="telephoneMask"
></kendo-maskedtextbox>
</kendo-formfield>
</div>