Unplanned
Last Updated: 21 May 2024 12:30 by Stefanie
Typing into the input field sometimes does not update the MaskedEntry's Value immediately - the last character is always missing.
Unplanned
Last Updated: 17 May 2024 05:23 by Stefanie
If you use the Autofill from Contacts feature on iOS to set the MaskedEntry Value, any Value update inside the ValueChanging event is not respected in that case.
Completed
Last Updated: 07 Jun 2023 07:41 by ADMIN
Release 5.2.0

When I register the pages and controls using AddTransient it works but when I use AddSingleton it doesn't. 

System.InvalidOperationException: PlatformView cannot be null here
[mono-rt]    at Microsoft.Maui.Handlers.ViewHandler`2[[Microsoft.Maui.ILayout, Microsoft.Maui, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null],[Microsoft.Maui.Platform.LayoutViewGroup, Microsoft.Maui, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]].get_PlatformView() in ViewHandlerOfT.cs:line 36
[mono-rt]    at Telerik.Maui.Handlers.RadMaskedEntryHandler.GetTextInputFromNativeVisualTree()
[mono-rt]    at Telerik.Maui.Handlers.RadMaskedEntryHandler.UpdateNativeTextInput()
[mono-rt]    at Telerik.Maui.Handlers.RadMaskedEntryHandler.NativeView_ChildViewRemoved(Object sender, ChildViewRemovedEventArgs args)

Unplanned
Last Updated: 14 Apr 2023 09:00 by Bojan
In some cases, the masked entry does not manage to accept the last digit when typing in, or directly setting the Value property. One example is this string: "169.254.1.  1". Note that there are two spaces right before the last digit. As a result of this, the mask displays "169.254._1_.___", which contains an incorrect value as it is missing the last byte.
Completed
Last Updated: 15 Mar 2023 11:38 by ADMIN
Release 5.1.0
Created by: Bernd
Comments: 5
Category: MaskedEntry
Type: Feature Request
1

I would like to set the Keyboard Type the same way as it's possible for the regular Entry (see docs).

The reason is that I have a MaskedEntry with a mask that allows only numeric input. That's why I want to set Keyboard="Numeric".
This is how it should look like in the end:

<telerik:RadTextMaskedEntry
                  x:Name="entry"
                  Keyboard="Numeric"
                  Mask="00:00" />

Unplanned
Last Updated: 23 Jan 2023 14:37 by Yohancef
Created by: Yohancef
Comments: 0
Category: MaskedEntry
Type: Feature Request
1
Expose CursorPosition property in MaskedEntry control.
Completed
Last Updated: 18 Oct 2022 14:28 by ADMIN
Release 3.1.0
Created by: David
Comments: 3
Category: MaskedEntry
Type: Bug Report
1
Had to use ValueChangedEvent as workaround, which fires on every digit change. Not acceptable long-term.