I'm using latest toolkit (v18) and I have a strange behaviour when textbox receive focus. This is my markup:
<asp:textbox runat="server" maxlength="10" id="txtBadge" name="txtBadge" placeholder="Codice badge" required="required"></asp:textbox>
<asp:MaskedEditExtender runat="server" TargetControlID="txtBadge" Mask="9999999999" MaskType="Number" PromptCharacter="" />
I can correctly insert only numbers, but when txtBadge receive focus the text changes like this:
NORMAL I entered the badge number
ODD I just clicked on the textbox
When I click outside of the textbox, then it shows again the correct text. what can it depend on? Thanks