This is a migrated thread and some comments may be shown as answers.

UI Freezes when typing numbers and letters into NumericUpDown

1 Answer 89 Views
NumericUpDown
This is a migrated thread and some comments may be shown as answers.
Tulio
Top achievements
Rank 1
Tulio asked on 22 Apr 2019, 09:19 PM

This is a weird bug, but our QA team noticed that quickly typing A LOT of letters (with numbers in between them) into a NumericUpDown box, freezes the UI (and it never goes back). The NumericUpDown is directly bound to VM and we are not using any converters or code behind. We are using noXaml dlls.

 

XAML

 

<telerik:RadNumericUpDown HorizontalAlignment="Stretch"
AutomationProperties.AutomationId="FindSiteBasePortNumericUpDown"
Maximum="65534"
Minimum="1"
Value="{Binding Port, Mode=TwoWay}"
IsEnabled="{Binding IsFormIdle}"/>

VM:

public Decimal Port
{
get { return m_port; }
set { SetValue_(ref m_port, value, () => Port); }
}

1 Answer, 1 is accepted

Sort by
0
Vladimir Stoyanov
Telerik team
answered on 24 Apr 2019, 01:46 PM
Hello Tulio,

Thank you for the provided xaml. 

I tested the described behavior on my end, however I am afraid that I was not able to reproduce it. This is why I am attaching the sample project, which I used for testing purposes. Please, check it out and let me know, if I am missing something. May I kindly ask you to modify the sample project in order to reproduce the faulty behavior and send it back in a new support ticket? You can also share some sample steps or a video, which I can use in order to reproduce the same result on my end.

If you are able to reproduce the same behavior with the sample project, can you elaborate on the exact setup on your end? Can you share which version of the UI for WPF dlls you are using? May I ask you to specify, if you are using different application cultures? Additionally, can you specify, if you are testing on a touch monitor?

Thank you in advance for any help you can provide.

Regards,
Vladimir Stoyanov
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
James
Top achievements
Rank 1
commented on 01 Oct 2021, 07:19 PM

We have the same issue.

Enter a value 12111111111111111111111111111132131323131231321321231321321321321321321321321321231

Then enter an alpha character. "A".

The app crashes.

Tags
NumericUpDown
Asked by
Tulio
Top achievements
Rank 1
Answers by
Vladimir Stoyanov
Telerik team
Share this question
or