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: 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.
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.
Unplanned
Last Updated: 16 Oct 2018 13:24 by ADMIN
When BorderColor is applied, it is still changed to the default one when the end user hovers over or focuses the control
Declined
Last Updated: 12 Oct 2018 06:11 by ADMIN
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 1
Category: Entry
Type: Bug Report
0
IsFocused doesn't appear to work when it's bound to a property in an item template.
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
Completed
Last Updated: 21 Aug 2018 11:37 by ADMIN
Available in minor release 2018.2.821. It will also be available in the R3 2018 release.
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.
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.
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 
  
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.
1 2