I have the following XAML and the ContractId is not being set to the value entered including the mask
If I set a mask of AAnn-nnn-LL and the user enters AB12-345-XY then ContractId is being set to AB12345XY and not
AB12-345-XY, is there anyway to get this to work?
<telerik:RadMaskedTextInput
Grid.Row="0"
Grid.Column="2"
HorizontalAlignment="Stretch"
Value="{Binding ContractId, Mode=TwoWay}"
Mask="{Binding FormatMask}"
EmptyContent="{Binding Mask.MaskValue}"
TextMode="MaskedText"/>
Thanks
Chris.