This question is locked. New answers and comments are not allowed.
I'm trying to set a mask for phone numbers in a grid using the GridViewMaskedTextBoxColumn, but it doesn't seem to be working. The XAML I'm using is as follows:
However, when running the application the phone number displays without the mask. What does it take to get the masking to work?
Thanks
<
telerik:GridViewMaskedTextBoxColumn
x:Name
=
"colCellPhone"
Header
=
"Cell Phone"
DataMemberBinding
=
"{Binding MobilePhone}"
MaskType
=
"Standard"
Mask
=
"###-###-####"
IsReadOnly
=
"True"
IsGroupable
=
"False"
IsFilterable
=
"False"
Width
=
"*"
/>
However, when running the application the phone number displays without the mask. What does it take to get the masking to work?
Thanks