It's really not that complicated to manually remove "mask" characters from a string but I was curious if this control already has this ability built in?
Here's an example:
assume ctrl = RadMaskedEditBox
ctrl.Mask = "00000-9999"
ctrl.Text = "_____-____"
ctrl.MaskType = Standard
If the user gets to this input box and types in "12345" and I check ctrl.Value I get this: "12345-____" when what I really want is "12345"
If I'm missing something, please advise otherwise, i'll just grunt my way through it :)
Thanks everyone!!!
-Curtis