We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

NumericUpDown blocked when enter more than 2 digits [UWP]

Hi,

Xamarin forms : V 2.3.3.175
SfNumericUpDown: V 14.4.0.15

When I enter more than 2 digits in the entry field, the focus is trapped in the entry and no other inputs are accepted. The app must be shut down.
Binding to an integer property in viewmodel. The following line shows the config of the control (N0 to avoid the floating point)

<xForms:SfNumericUpDown Grid.Column="1" Grid.Row="0" Value="{Binding IntValue}" ParsingMode="Decimal" MaximumDecimalDigits="0" FormatString="N0" SpinButtonAlignment="Left" />
     

When pausing the app in VisualStudio, there are about 10.000! tasks scheduled, looks like a recursive call of something to me.

Not Flagged        44028    Scheduled    [Scheduled and waiting to run]    Task.ContinueWith: <WatchForError>b__0
Not Flagged        44027    Scheduled    [Scheduled and waiting to run]    WinRT Operation as Task
Not Flagged        44026    Scheduled    [Scheduled and waiting to run]    Task.ContinueWith: <WatchForError>b__0
Not Flagged        44025    Scheduled    [Scheduled and waiting to run]    WinRT Operation as Task
Not Flagged        44024    Scheduled    [Scheduled and waiting to run]    Task.ContinueWith: <WatchForError>b__0
Not Flagged        44023    Scheduled    [Scheduled and waiting to run]    WinRT Operation as Task
......
Not Flagged        34032    Scheduled    [Scheduled and waiting to run]    Task.ContinueWith: <WatchForError>b__0
Not Flagged        34031    Scheduled    [Scheduled and waiting to run]    WinRT Operation as Task
Not Flagged        34030    Scheduled    [Scheduled and waiting to run]    Task.ContinueWith: <WatchForError>b__0
Not Flagged        34029    Scheduled    [Scheduled and waiting to run]    WinRT Operation as Task     

4 Replies

SI Siggi December 20, 2016 08:48 AM UTC

OK,
it depends on the value,
enter value "99" and "100" is OK,
ener value "101" -> stuck!




PK Pavendhan Kumar Syncfusion Team December 21, 2016 12:24 PM UTC

Hi,

Thank you for contacting Syncfusion software.

The default value for the SfNumericUpDown is ranging from 0 to 100. So it did not allows the user to enter value above 100. Please use Minimum and Maximum property to vary the range.

for example:
numericUpDown.Minimum=10;
numericUpDown.Maximum=50;

Please let us know whether the provided solution helps you or not.

Regards,
Pavendhan K.


SI Siggi December 21, 2016 01:38 PM UTC

Hi,
your solution doesn´t help,
the control should not block the entire app when a user types a number higher then the limit in the field.
Regards.


PK Pavendhan Kumar Syncfusion Team December 22, 2016 12:51 PM UTC

Hi Siggi,

Thanks for contacting Syncfusion Support.

We were able to reproduce the reported issue “SfNuemricUpDown stops working” at our end. And we have logged a defect report regarding the same. A support incident to track the status of this defect has been created under your account. 

Please log on to our support website to check for further updates.

https://www.syncfusion.com/account/login?ReturnUrl=%2fsupport%2fdirecttrac%2fincidents/  

Regards,
Pavendhan K. 
 


Loader.
Live Chat Icon For mobile
Up arrow icon