I have a Maskedit with 3 segments (see below) and in the last segment (choice) when the user navigate with the keyboard rows (up/down) appears the list of choices configured, AND when you go to the last option, appears "32". Yes the maskedit shows "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "K" AND "32".
Example:
"1234 - 9" -> Good
"1234 - 32" -> Wrong (32 is not part of the choices)
Quote:
<eo:MaskedEdit ID="MKE_Rut" runat="server" PromptChar=" " TextBoxStyle-CssText="TEXT-ALIGN: right" Width="85px" TabIndex="0">
<eo:MaskedEditSegment Mask="-99999999" SegmentType="Mask" MaxValue="99999999" />
<eo:MaskedEditSegment Text=" - " />
<eo:MaskedEditSegment Choices="0|1|2|3|4|5|6|7|8|9|K" SegmentType="Choice" Text="" />
</eo:MaskedEdit>
I need help with these issue.