Completed
Last Updated: 13 Nov 2024 12:37 by ADMIN
Release 2024.4.1113 (2024 Q4)
Andrzej
Created on: 24 Oct 2024 06:53
Category: MaskedEditBox
Type: Bug Report
0
RadMaskedEditBox: Standard Mask with character 0 allows entering Space
Setting the Standard Mask to "00000" allows entering Space characters (it should not allow entering space).
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 24 Oct 2024 08:22

Hello, Andrzej,

You can use the following workaround:

this.radMaskedEditBox1.KeyPress += RadMaskedEditBox1_KeyPress;
private void RadMaskedEditBox1_KeyPress(object sender, KeyPressEventArgs e)
{
    if (e.KeyChar == ' ')
    {
        e.Handled = true;
        return;
    }
}

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.