Completed
Last Updated: 18 May 2018 12:50 by ADMIN
Command (Apple key ) + V, C, X, (ArrowKeys) combinations do not work in MaskedInput for Silverlight under MAC.  They should work just like when Control is pressed instead of Command.

For example string '1.23' is pasted in RadMaskedNumericInput and Text becomes 1.23.456 which cannot be parsed to value, and also, Value is not updated at all after Command + V paste operation.

Expected: Text and Value should become 1.23 in scenarios when mask is not empty.
Completed
Last Updated: 13 Sep 2016 13:51 by ADMIN
Value is aabbcc. Caret is between "a" and "b".

Pressing 2 times  b should move the caret between "b" and "c".

Currently the caret does not move.

Fix available in LIB Version 2016.1.404.
Completed
Last Updated: 01 Apr 2016 13:57 by ADMIN
ArgumentOutOfRangeException is thrown on paste when the masked input is unloaded and loaded again before that. Reproducible only in NoMask scenario (Mask="")

You can reproduce the issue using the following steps:

    1. Define a RadMaskedTextInput control
    2. Enter some text in the control
    3. Copy the text (the copy source is not important you can copy whatever you want)
    4. Remove the masked input from the visual tree
    5. Add the masked input back in the visual tree and reset its Value property, then focus the control manually (ex: using its Focus() method).   
    6. Paste the text from the clipboard without clicking on the control.

Fixed in LIB Version 2016.1.404.
Completed
Last Updated: 16 Oct 2015 13:24 by ADMIN
RadMaskedNumericInput or RadMaskedCurrencyInput with SpinMode set to PositionAndValue.

Mask="" (no-mask).

Increasing from 1 to more than 10 works as expected. However, decreasing the 2-digitvalue to Value lower than 10 is not possible if the caret is on the right of all digits.

Icreasing and decreasing is done with Keyboard Up and Down Arrow Keys.


Available in LIB version: 2015.3.1019 
Completed
Last Updated: 16 Oct 2015 14:42 by ADMIN
RadMaskedCurrencyInput, keyboard up/down throws exception with Culture set to fr-FR. As a workaround use NoMask (Mask = "") along with FormatString="C"


Available in LIB version: 2015.3.1019 .
Completed
Last Updated: 09 Feb 2023 16:45 by ADMIN
When you hit the Enter key and a number simultaneously the number is removed from the Value of the RadMaskedNumericInput

Workaround:
Handle the KeyDown event of the RadMaskedNumericInput control, when the Enter key is pressed.

private void INPUT_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        if (INPUT.Value.ToString().Length > 0)
        {
            RadWindow.Alert(INPUT.Value.ToString());
        }
        e.Handled = true;
    }
}
Completed
Last Updated: 18 Nov 2014 14:51 by ADMIN
Numeric/CurrencyInput with NoMask (Mask="") and FormatString = N or N2, N3.

Selecting the whole value and then pasting new one does not replace the whole selected value but it should.
Completed
Last Updated: 02 Jun 2014 20:03 by Jeff
Pressing + or - on the number pad doesn't allow character entry the same is it does when pressing the equivalent keys on the standard qwerty part of the keyboard to the right of the 0 on the number row. This issue has been reported before through the forums and was logged in PITS but somehow wasn't carried over to the new feedback portal.

Related forum post: http://www.telerik.com/forums/dash-on-number-keypad-doesn-t-work-radmaskedtextinput

Original PITS URL: http://www.telerik.com/support/pits.aspx#/public/silverlight/14543

As a side note, the PITS items really should have been migrated over to the new portal and the ids should have been mapped so that the URLs scattered throughout your forum, peoples blog posts, and bookmarks are not dead.
Completed
Last Updated: 16 May 2014 11:19 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: MaskedInput
Type: Bug Report
1
The MaskedInput controls should not handle the event when the SpinMode property is set to None.
Completed
Last Updated: 11 Jul 2016 07:52 by ADMIN
The currency symbols by Culture to "hr-HR" (Croatia) should be: "0.00 kn". At the moment they are "k__" and the user can type over them, which is not correctly.


The fix will be available in lib for 11 July 2016.
Completed
Last Updated: 14 May 2014 12:23 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: MaskedInput
Type: Bug Report
3
If you cut a part of the entered text of the RadMaskedTextInput, the symbols that are cut are replaced with placeholders. 
This behavior is expected when there is Mask set in the control. 
The bug is only for no-masked InputControls - Numeric, Currency, TextInput.
The no-masked TextInput (Mask ="") should behave just like normal TextBox control in this scenario.
Completed
Last Updated: 27 Dec 2016 13:52 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: MaskedInput
Type: Bug Report
1
If you try to paste text in the RadMaskedTextInput control using the default ContextMenu, after the Clear button is pressed, the Paste command is not working as expected.
Fixed in R1 2015.
Du0plication:
Completed
Last Updated: 04 Feb 2016 12:55 by ADMIN
When MaskedNumericInput (or Currency) control is inside ScrollViewer, HorizontalAlignment is Stretch and HorizontalContentAlignment is NOT Left , clicking in control does not focus it.
You must click close to the Value in order to focus successfully.
This should work like it works when the HorizontalAlignment is Left.
This is reproducible only in Silverlight.