Completed
Last Updated: 13 Nov 2024 12:38 by ADMIN
Release 2024.4.1113 (2024 Q4)
Andrzej
Created on: 24 Oct 2024 08:26
Category: MaskedEditBox
Type: Bug Report
0
RadMaskedEditBox: Clear button doesn't clear numeric values
Clear button in the control doesn't clear numbers.
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 24 Oct 2024 08:42

Hello, Andrzej,

You can use the following workaround:

this.radMaskedEditBox1.MaskedEditBoxElement.ClearButton.Click += ClearButton_Click;

private void ClearButton_Click(object sender, EventArgs e)
{
    this.radMaskedEditBox1.Value = null;
}

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.