Completed
Last Updated: 20 Feb 2014 15:17 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 27 Aug 2013 08:51
Category: Editors
Type: Bug Report
1
FIX. RadMaskedEditBox removes the last number when Enter key is pressed
To reproduce:
- add a RadMaskedEditBox with MaskType = MaskType.Standard
- input some numbers to fill all the expected digits
- select the content in the RadMaskedEditBox and press Enter key. As a result the last number is removed

Workaround:
private void radMaskedEditBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            e.Handled = e.KeyChar == (char)Keys.Return;
        }
0 comments