Unplanned
Last Updated: 28 May 2021 14:32 by ADMIN
When a user wants to enter more than one number, he changes the keyboard to the numeric input layout.
But every time the user clicks on a number, the keyboard immediately switches back to the text input layout.
Completed
Last Updated: 23 Oct 2019 12:22 by ADMIN
Release R2 2019 SP
Available in R2 2018 SP release.
Completed
Last Updated: 24 Jun 2020 12:06 by ADMIN
Release R2 2020 SP
Completed
Last Updated: 18 Oct 2018 11:52 by ADMIN
An exception is thrown in iOS when attempting to paste something that will result in the text being longer than the mask.

Available in the R3 2018 SP release.
Completed
Last Updated: 24 Jun 2020 12:04 by ADMIN
Release R2 2020 SP
The component throws exception when it is setup to use text mask type. Exception is not observed when regex mask type is used.
Unplanned
Last Updated: 02 May 2023 14:33 by Mauricio
Created by: Mauricio
Comments: 0
Category: MaskedInput
Type: Bug Report
1

Watermark text is not displayed on Android. 

Workaround: 

set the WatermarkText property in code-behind with some delay:

Device.BeginInvokeOnMainThread(() =>
{
    mask.WatermarkText = "enter e-mail here";
}

Completed
Last Updated: 24 Jun 2020 12:06 by ADMIN
Release R2 2020 SP
Created by: Tom
Comments: 0
Category: MaskedInput
Type: Bug Report
0
The Xamarin.Forms MaskedInput control running on Android with the SwiftKey keyboard app installed does not allow for correct text entry and causes the app to Crash. Using the default keyboard the control works correctly. 
Unplanned
Last Updated: 08 Feb 2018 16:02 by ADMIN
As a workaround, the InputValue could be set at a later stage according to the concrete scenario.
Unplanned
Last Updated: 27 Feb 2018 10:49 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: MaskedInput
Type: Bug Report
0

			
Unplanned
Last Updated: 06 Apr 2018 10:26 by ADMIN
MaskedInput: [iOS] Transparent BorderStyle is not applied correctly.
Unplanned
Last Updated: 13 Jul 2018 08:57 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 2
Category: MaskedInput
Type: Bug Report
0
Currently when regex is used and the InputValue is bound and the control is focused several placeholders are added. This is incorrect behavior. The placeholders should not be added at all in regex scenarios.

===========
Workaround: Set Placeholder property to "" (empty string)
Unplanned
Last Updated: 07 Aug 2018 06:37 by ADMIN
ADMIN
Created by: Lance | Manager Technical Support
Comments: 0
Category: MaskedInput
Type: Bug Report
0
When in a TableView's ViewCell, the user has to use a touch and hold gesture on the control in order for the control to gain focus. Additionally, once the touch is released, the focus is lost.

<TableView>
   <ViewCell>
        <RadMaskedInput>
Unplanned
Last Updated: 10 Aug 2018 07:12 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: MaskedInput
Type: Bug Report
0
When the mask is set to be Regex and in code the InputValue of the control is set, the validation is not triggered and the error message is visualized.
Completed
Last Updated: 09 Mar 2023 15:49 by ADMIN
Release R1 2021 SP1
Native Android Editor widget throws an exception when long tap is performed
Unplanned
Last Updated: 24 Jan 2019 13:41 by ADMIN

On Sony Xperia there is a default Xperia keyboard where the following behavior with MaskedInput is observed:

- while typing into MaskedInput input field, the cursor jumps a few positions; 

- users cannot enter spaces;
Completed
Last Updated: 04 Oct 2019 14:44 by ADMIN
Release 2019.3.1004 (R3 2019 minor release)
Created by: JorgeCea
Comments: 0
Category: MaskedInput
Type: Bug Report
0
Setting DisplayedTextFontSize property of the MaskedInput control takes no effect.
Unplanned
Last Updated: 19 Mar 2020 11:44 by ADMIN
Created by: Alan
Comments: 0
Category: MaskedInput
Type: Bug Report
0

MaskedInput ignores VerticalOptions

 

Completed
Last Updated: 22 Oct 2020 15:29 by ADMIN
Release R3 2020 SP1

sample MaskedInput definition:

_Telephone = new RadMaskedInput
            { 
                Mask = "[(][0-9]{3}[)] [0-9]{3}-[0-9]{4}",
                MaskType = MaskType.Regex,
                WatermarkText = "Phone # (999) 999-9999",
                RejectedSymbolErrorText = "Only Numbers Allowed!",
                InvalidInputErrorText = "Invalid Input",
                WatermarkTextColor = Color.Black,
                ErrorColor = Color.Red,
                DisplayedTextColor = Color.Black,
            };

            _Telephone.InputValue = "2223334444";
            Grid.Children.Add(_Telephone, 0, 0);

and the result:

 

 

Unplanned
Last Updated: 27 Jul 2020 11:01 by ADMIN
When taping outside of the mask, Invalid Input Error Text is not visualized in Regex and Text Masks
Completed
Last Updated: 16 Sep 2020 12:08 by ADMIN
Release R3 2020
Created by: Seth
Comments: 0
Category: MaskedInput
Type: Bug Report
0
focused and unfocused events are not raised. 
1 2