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

Cursor Position Changes in RadNumericUpDown

2 Answers 113 Views
NumericUpDown
This is a migrated thread and some comments may be shown as answers.
B Jones
Top achievements
Rank 1
B Jones asked on 17 Jun 2011, 12:54 AM

Hello,
Currently I have an issue with the cursor positiion changing when entering data into the RadNumericUpDown control for the first time when my user control loads.

My control is expressed in Xaml:

<telerik:RadNumericUpDown HorizontalAlignment="Left" Width="50" Grid.Row="0" Grid.Column="1" ShowButtons="False" ValueFormat="Currency" UpdateValueEvent="PropertyChanged" Value="{Binding Currency}"/>

The control is bound to a ViewModel with a Currency Property of type double?

private double? _currency;
public double? Currency
{
      get { return this._currency; }
      set
      {    
          if (this._currency != value)
          {
              this._currency = value;
              NotifyPropertyChanged("Currency");
          }
      }
}

When setting focus to the control for the first time, entering the numbers:
654 yields 546.00

I can attach a sample project that displays the behavior if needed. 
Thank you.

2 Answers, 1 is accepted

Sort by
0
Konstantina
Telerik team
answered on 21 Jun 2011, 09:14 AM
Hi B Jones,

Sending us a sample project will be very helpful and time saving. Could you please open a support ticket and attach the project there.

Thank you in advance.

Kind regards,
Konstantina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
B Jones
Top achievements
Rank 1
answered on 23 Jun 2011, 12:51 AM
For others finding this problem, this is a known issue. Please vote here to get it fixed: http://www.telerik.com/support/pits.aspx#/public/silverlight/3329.
Tags
NumericUpDown
Asked by
B Jones
Top achievements
Rank 1
Answers by
Konstantina
Telerik team
B Jones
Top achievements
Rank 1
Share this question
or