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: 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
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.
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.
Declined
Last Updated: 24 Jul 2019 08:18 by ADMIN
Created by: Precise Software Solutions
Comments: 3
Category: Entry
Type: Bug Report
0

Any version of Xamarin.Forms, the iOS version of the application crashes when attempting to apply a custom font "parameter descriptor cannot  be null"  

 

With this resource defined, and the OpenSans-Bold.ttf is in the Resources directory, marked as bundle resource...

<OnPlatform x:TypeArguments="x:String" x:Key="BoldFont">
    <On Platform="Android" Value="OpenSans-Bold.ttf#Open Sans" />
    <On Platform="iOS" Value="OpenSans-Bold" />
 </OnPlatform>


And using this code for the style (created from the Telerik login view template, with some modifications):

 


    <Style x:Key="LoginEntryStyle"
           TargetType="telerikInput:RadEntry">
        <Setter Property="TextColor"
                Value="{StaticResource DarkTextColor}" />
        <Setter Property="WatermarkTextColor"
                Value="{StaticResource LightBlueColor}" />
        <Setter Property="FontSize"
                Value="14" />
        <Setter Property="FontFamily"
                Value="{StaticResource BoldFont}" />
        <Setter Property="HeightRequest"
                Value="48" />
        <Setter Property="Margin"
                Value="0,0,0,16" />
        <Setter Property="BorderStyle">
            <Setter.Value>
                <telerikInput:BorderStyle BorderColor="{StaticResource LightBlueColor}"
                                          BorderThickness="1"
                                          CornerRadius="8" />
            </Setter.Value>
        </Setter>
    </Style>


Unplanned
Last Updated: 23 Mar 2020 09:46 by ADMIN
 If you create a login page, username password, and you run the app on the debugger, if you close the app using the debugger on visual studio the app closes and the keyboard stays displayed in the android main screen.
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
Unplanned
Last Updated: 17 Nov 2020 16:00 by ADMIN

All entry fields are not aligned to Right when the RTL language is selected. 

Steps to reproduce,

1. Create a normal page with RadEntry with FlowDirection set to {x:Static Device.FlowDirection}

2. Change the flow direction of the app pragmatically using Device.SetFlowDirection(RTL).

3. Then the Entry is not aligning to RTL
1 2