Completed
Last Updated: 15 Feb 2021 09:03 by ADMIN
Release R1 2021
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 10
Category: Entry
Type: Bug Report
16
When setting a custom Font, the RadEntry falls back on the default platform font family.
Completed
Last Updated: 24 Feb 2021 13:11 by ADMIN
Release R1 2021 SP1
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 6
Category: Entry
Type: Feature Request
15
Introduce a MaxLength property. 

An example of such a feature is the Xamarin.Forms Entry control's MaxLength property: 

https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/text/entry#limiting-input-length 
Unplanned
Last Updated: 18 Sep 2020 09:29 by Oluwagbenga
Created by: Drew Rhoades
Comments: 4
Category: Entry
Type: Feature Request
12
I'm particularly wanting the "Assistive labels" features, which comes from Material design (click in the textbox, and the watermark becomes a floating label).  Like this:

https://www.syncfusion.com/xamarin-ui-controls/text-input-layout
Unplanned
Last Updated: 04 Feb 2019 13:12 by ADMIN
Created by: Marc
Comments: 3
Category: Entry
Type: Feature Request
8
Add an optional Clear button to the Entry control, which clears the contents.   This can default to an "X" image, but there should be an option to apply a custom image.
Completed
Last Updated: 13 Apr 2021 11:56 by ADMIN
Release 2021.1.413 (R1 2021 minor release)
Xamarin.Forms Entry with IsPassword=true does hide the suggestions
Unplanned
Last Updated: 01 May 2018 06:10 by ADMIN
If you apply a border with rounded corners and background color to RadEntry, the background exceeds the border.
Unplanned
Last Updated: 22 Mar 2018 10:52 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 0
Category: Entry
Type: Bug Report
5
When setting a FontFamily on RadEntry, and the font family resource cannot be found, you'll be presented with an exception:

"Value cannot be null.
Parameter name: descriptor"

Stack Trace:

at UIKit.UIFont._FromDescriptor (UIKit.UIFontDescriptor descriptor, System.nfloat pointSize) [0x00011] in /Library/Frameworks/Xamarin.iOS.framework/Versions/11.8.0.20/src/Xamarin.iOS/UIKit/UIFont.g.cs:106 
  
Unplanned
Last Updated: 15 Mar 2019 18:39 by ADMIN
Created by: Sadanan
Comments: 2
Category: Entry
Type: Feature Request
4
Provide a way to customize the return key on the soft keyboard when the control is focused
Completed
Last Updated: 14 Sep 2022 13:55 by ADMIN
Release R3 2022
After updating Xamarin.Forms to version 5.0.0.2478, the WatermarkText doesn't show in RadEntry on Android anymore.
Unplanned
Last Updated: 10 Sep 2019 20:55 by ADMIN
I would need to control when the overlay keyboard will appear, for example, hide it when the Entry gets the focus.
Completed
Last Updated: 30 Jan 2023 07:49 by ADMIN
Release R1 2023

When placing and RadEntry in Popup, Object disposed exception is thrown. 

The issue cannot be reproduced with Telerik UI for Xamarin version 2022.2.624.1

Workaround until a fix for this issue is provided: 

1. Use Telerik UI for Xamarin version 2022.2.624.1

or:

2. Use Xamarin.Forms Entry instead.

Unplanned
Last Updated: 11 Aug 2020 09:52 by ADMIN
Created by: Kevin White
Comments: 0
Category: Entry
Type: Feature Request
2
Provide a IsTextPredictionEnabled alternative for RadEntry
Unplanned
Last Updated: 04 Feb 2022 08:13 by ADMIN
Created by: Rodney
Comments: 0
Category: Entry
Type: Feature Request
2

I would like to be able to invoke the Completed event from code. This request is to add a SendCompleted event like the Xamarin.Forms Entry has defined in the IEntryController.

Alternatively, you could make the RadEntry.InvokeCompletedEvent method public, but the SendCompleted approach is more aligned with existing code.

Unplanned
Last Updated: 21 Jul 2022 12:56 by Ernest
Created by: Ernest
Comments: 0
Category: Entry
Type: Feature Request
2

Add a password strength indicator/meter for the Entry control similar to the one in ASP.NET AJAX TextBox:

Demos: Telerik Web UI TextBox Password Strength Checker Demo | Telerik UI for ASP.NET AJAX

Docs: Telerik Web Forms Password Strength Checker - RadTextBox | Telerik UI for ASP.NET AJAX

Completed
Last Updated: 03 Apr 2018 12:43 by Clément
ADMIN
Created by: Stefan Nenchev
Comments: 3
Category: Entry
Type: Bug Report
1
Explicitly setting the Text property of the RadEntry to null results in NullReferenceException. This is not the behavior with the standard Entry control.
Completed
Last Updated: 01 Mar 2018 12:15 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 1
Category: Entry
Type: Feature Request
1
On Android, when binding the Text value to a view model property, the value doesn't update.

Use the following to reproduce:

// VIEW

<Label Text="RadEntry" />
<telerikInput:RadEntry x:Name="MyRadEntry" 
                       Text="{Binding Username}" 
                       Margin="0,0,0,20"/>
        
<Label Text="Xamarin.Forms Entry" />
<Entry Text="{Binding Username}"/>

// VIEW MODEL

public class ViewModel : NotifyPropertyChangedBase
{
    private string username = "initial";
    private int counter;

    public ViewModel()
    {
        Device.StartTimer(TimeSpan.FromMilliseconds(500), (() =>
        {
            counter++;
                
            Device.BeginInvokeOnMainThread(() =>
            {
                Username = $"{counter}";
            });
                
            return counter < 100;
        }));
    }

    public string Username
    {
        get { return username; }
        set { username = value; OnPropertyChanged();}
    }
}


 Update: Available in R1 2018 SP release.
Completed
Last Updated: 21 Jan 2019 06:03 by ADMIN
As a workaround you could set TextColor property of the Entry control.
Completed
Last Updated: 09 Nov 2018 15:47 by Norman
ADMIN
Created by: Georgi
Comments: 6
Category: Entry
Type: Bug Report
1
Available in minor release 2018.3.1109. It will also be available in the R1 2019 release.
Completed
Last Updated: 22 Nov 2018 16:15 by ADMIN
ADMIN
Created by: Yana
Comments: 0
Category: Entry
Type: Bug Report
1
Available in minor release 2018.3.1122. It will also be available in the R1 2019 release.
Unplanned
Last Updated: 14 Sep 2018 06:14 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: Entry
Type: Bug Report
1
In Android the OneWay binding to Text property is not working
1 2