Hi, i want to apply a decimal mask to a textbox like Mask="nnn.nn" and when the user provides only 2 digits before decimal seperator to ignore the remaing spaces for chars before seperator.
e.g if mask is "nnn.nn" and i type 45 I want the value to be 45.00 without validation errors.
Any ideas?
I would handle something like this with a keydown or text changed event handler and check to see if it is white space then remove the white space or quickly update the text to make it match the validation rule.