Completed
Last Updated: 31 Jan 2024 15:50 by Doug
Release 6.7.0

Runtime exception with latest Microsoft .NET iOS sdk 8.0.100 17.0.8490

Exception: 

 TelerikTestForSimulator[24646:547905] *** NSForwarding: warning: object 0x60000289d5c0 of class 'Telerik_Maui_InputElement_RadTextField' does not implement methodSignatureForSelector: -- trouble ahead
 TelerikTestForSimulator[24646:547905] *** NSForwarding: warning: object 0x60000289d5c0 of class 'Telerik_Maui_InputElement_RadTextField' does not implement doesNotRecognizeSelector: -- abort

Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0

Keyboard remains open on iOS when taping outside of Entry control. 

There is a workaround for the MAUI Entry control by setting the HideSoftInputOnTap property on the Pagel, but this property does not work on RadEntry. The keyboard remains open. 

Completed
Last Updated: 07 Jun 2023 07:41 by ADMIN
Release 5.2.0

A line going through the clear button of the RadEntry control. The behavior is reproduced on Android 9.0

Completed
Last Updated: 15 Mar 2023 11:32 by ADMIN
Release 5.1.0
When the culture requires "," as decimal separator, the numeric keyboard shows "." and cannot enter ","
Completed
Last Updated: 18 Jan 2023 12:29 by ADMIN
Release 5.0.0
Created by: Daniel
Comments: 0
Category: Entry
Type: Bug Report
1

On Windows when IsReadOnly state changes to true, the control state does not change, you can still edit the text. 

Example:

<VerticalStackLayout >
            <Switch IsToggled="{Binding IsReadOnly,Source={x:Reference EntryShareName}}"/>
            <telerik:RadEntry x:Name="EntryShareName"
                                FontSize="14"
                                Placeholder="Enter text here"
                                PlaceholderColor="#99000000"
                                AutomationId="radEntry">
            </telerik:RadEntry>
        </VerticalStackLayout>

 

Completed
Last Updated: 01 Mar 2023 16:59 by ADMIN
Created by: Daniel
Comments: 1
Category: Entry
Type: Bug Report
0

The Placeholder position is not in sync with the Entry's Text, it is always top-left aligned.

Here's a quick screenshot of what happens when the RadEntry is larger than the default.


This has the side effect of not being aligned with the Text.

Suggested Solution

There are several ways I can think of to approach this, but I think the easiest way would be to just bind the top level control's VerticalTextAlignment property value on the internal Label being used for the Placeholder

<telerik:RadEntry Placeholder="Name"
                              WidthRequest="280"
                              HeightRequest="100"
                              VerticalTextAlignment="End"/>

Completed
Last Updated: 25 Apr 2023 11:19 by ADMIN
Created by: Daniel
Comments: 1
Category: Entry
Type: Bug Report
0

When you've set IsPassword=True and have an initial value for Text, that value is ignored (only the watermark is shown).

Reproducible on .NET MAUI peview14 using UI for MAUI 0.6.0 with the following code

<telerik:RadEntry Placeholder="Password" Text="1234" IsPassword="True"/>