Completed
Last Updated: 06 May 2016 14:06 by ADMIN
ADMIN
Dimitar
Created on: 04 May 2016 09:50
Category: Editors
Type: Bug Report
0
FIX. RadMaskedEditBox - the text is not pasted when Regex mask is used.
To reproduce:
- Set the mask to regex and paste with Ctrl + V.

Workaround:
private void RadmaskedEditBox1_KeyPress(object sender, KeyPressEventArgs e)
{
    if (e.KeyChar == '\x16')
    {
        radmaskedEditBox1.MaskedEditBoxElement.TextBoxItem.Paste();
    }
}
0 comments