Completed
Last Updated: 01 Apr 2025 09:01 by ADMIN
Release 2025 Q2 (May)
Created by: Russ
Comments: 0
Category: NumericTextBox
Type: Bug Report
0

Using the set_enabled() method of the NumericTextBox doesn't disable/enable the TextBox properly:

<telerik:RadCheckBox runat="server" ID="CheckBox1" OnClientCheckedChanged="onClientCheckedChanged" Text="Enable/Disable" AutoPostBack="false" />
<telerik:RadNumericTextBox ID="RadNumericTextBox1" runat="server" />  

function onClientCheckedChanged(sender, args) {
    let numericTextBox = $find("<%= RadNumericTextBox1.ClientID %>");
    let isChecked = args.get_checked();

    numericTextBox.set_enabled(isChecked);
}
Completed
Last Updated: 11 Feb 2020 10:12 by ADMIN
Release R3 2019

Using numerictextbox :

- FireFox (rel.67.0.1)  accept non numeric characters.

- IE (rel. 11.461) , correctly, accept only numeric but entering the page in debug mode in Visual Studio, I get the error in attach.

- Edge is ok  

 

Thanks

Mario