Completed
Last Updated: 13 Feb 2026 06:57 by ADMIN
Release 2026 Q2 (May)
Anthony
Created on: 12 May 2025 19:25
Category: NumericTextBox
Type: Feature Request
0
have numeric keyboard show for mobile device
is it possible for the radnumerictextbox control to pop up with numeric keyboards on mobile devices yet?  I see old KB articles that said no, but they were pretty old.
1 comment
ADMIN
Vasko
Posted on: 13 May 2025 10:08

Hello Anthony,

While the NumericTextBox doesn't have such a property by default, you can get its input element and add the pattern attribute to specify to the mobile device what characters to expect, in order to give the correct keyboard: 

<telerik:RadNumericTextBox runat="server" ID="NumericTextBox1">
    <ClientEvents OnLoad="onLoad" />
</telerik:RadNumericTextBox>
function onLoad(sender, args) {
    let input = sender.get_element();

    input?.setAttribute("pattern", "[0-9]*");
}   

Regards,
Vasko
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources