This question is locked. New answers and comments are not allowed.
I am using Silverlight and RadMaskedInputText but I think this can be a more general question:Let's say I have a control that accepts masked input like
###-###-#### and I enter 710- -9830
For some reason when I save the value into the database it is saved as 7109830
so next time that the form loads the mask will show 710-980-3 which is wrong.
What do you think is the root cause of the issue and how can I fix it?
<Setter Property="Mask" Value="###-###-####"></Setter>
<Setter Property="Placeholder" Value=" " />
###-###-#### and I enter 710- -9830
For some reason when I save the value into the database it is saved as 7109830
so next time that the form loads the mask will show 710-980-3 which is wrong.
What do you think is the root cause of the issue and how can I fix it?
<Setter Property="Mask" Value="###-###-####"></Setter>
<Setter Property="Placeholder" Value=" " />