Hi,
Look the following MaskEdit field for entering the phone number in Brazilian format.
Code: HTML/ASPX
<eo:MaskedEdit ID="BrazilianPhoneNumber" runat="server" BackColor="#E0E0E0" BorderColor="#2E482A"
BorderStyle="Outset" BorderWidth="1px" ForeColor="#2E482A" TabIndex="5" Width="120px">
<eo:MaskedEditSegment Mask="(00) 0000-0000" MaxValue="0" SegmentType="Mask" Text="" />
</eo:MaskedEdit>
Why does it only consider from the second digit entered? That is, to enter the phone number (21) 3456-7890, when pressing the first number 2, nothing happens. Only when pressing again the number is that it appears in the mask.
Thanks in advance, Camarate