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
Completed
Last Updated: 24 Feb 2021 13:11 by ADMIN
Release R1 2021 SP1
ADMIN
Created by: Lance | 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 
Completed
Last Updated: 01 Mar 2018 12:15 by ADMIN
ADMIN
Created by: Lance | 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.