I have a RadMaskedNumericInput as follows:
<telerik:RadMaskedNumericInput Grid.Row="0" Grid.Column="1" Width="55"
Mask=""
FormatString="n2"
Value="{Binding TotalFeedVolume}"
IsClearButtonVisible="False"
/>
When I click on the left of the initial zero, it moves my cursor right in front of the decimal point. This is a bit frustrating, as I couldn't, for example, just easily make it "10" with one keystroke. Any way to fix this?
Hello Zack,
I tested this in a sample project, however, I was unable to reproduce the reported behavior. I attached the test application, so, would it be possible to give it a try and let me know if I am missing something?
That's weird, because it's happening for me on your project.
The only change I made was to import Telerik.Windows.Controls.Input.for.Wpf.Xaml (2025.2.707) as we're using Nuget instead of the direct installed assemblies.
Hello Zack,
I tested it with the Telerik.Windows.Controls.Input.for.Wpf.Xaml (2025.2.707) NuGet package, however, I was not able to reproduce this behavior. Initial click on the control will move the focus to the right side of the 0, however, I can still move the cursor to the left side. I attached a GIF that showcases the observed behavior on my end:
With this in mind, would it be possible to share a GIF or a video that showcases the observed behavior on your end?
Hello Zack,
Thank you for the additional information. It was very helpful.
To achieve this requirement, the RadMaskedNumericInput control exposes the SelectionOnFocus property, which you could set to CaretToBeginning. This way, when the user focuses on the element, the caret will be moved to the beginning (left side), which should produce the desired behavior.
More information on this property can be found in the below article:
WPF MaskedInput - Working with Selection - Telerik UI for WPF
With this being said, could you give this suggestion a try?
Thank you for the article.
The behavior I want is "Unchanged" for SelectionOnFocus. The article claims this is the default value, but I had not set anything and the behavior appears to be using "Default". Could you double check that "Unchanged" is actually the default value?
Hello Zack,
Indeed, you are correct. The default value of the SelectionOnFocus dependency property is set to Default, and it is documented incorrectly in our documentation. Due to this, I logged a new item in our internal backlog in order to review the article and update it.
With this in mind, you could set the SelectionOfFocus property to the desired value, which would fit your requirement.