Completed
Last Updated: 13 Apr 2021 11:56 by ADMIN
Release 2021.1.413 (R1 2021 minor release)
Martijn
Created on: 19 Mar 2019 15:12
Category: Entry
Type: Feature Request
8
Entry: Hide the suggestion tab that is above the keyboard when IsPasword is true
Xamarin.Forms Entry with IsPassword=true does hide the suggestions
9 comments
ADMIN
Georgi
Posted on: 15 Mar 2021 13:55

Hi all,

This item is available in latest internal build - LIB 2021.1.315 (15/3/2021)) and it will be also available in the next official release. You can find the LIB as a prerelease nuget or download the assemblies from your account.

Regards,
Georgi
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

ADMIN
Yana
Posted on: 08 Feb 2021 11:20

Hello David,

Indeed, the workaround with the Plain Keyboard does not work in all cases.  I understand this is a serious issue and we'll definitely take a look at it for some of the upcoming releases.  We'll update the feedback item as soon as there's any progress on it.

I am sorry for any inconvenience caused.

Regards,
Yana
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

David
Posted on: 04 Feb 2021 15:15

Hi,

I'm following this too, this is a security issue. Keyboard=plain does not hide suggestions on my Samsung Active Tab 2.

This is not a feature, password is displayed in clear in suggestions!

ADMIN
Lance | Manager Technical Support
Posted on: 06 Dec 2019 18:16

Hi David C.,

I am not able to replicate what you're reporting.  Here's an animated GIF of the code I shared at runtime on Android (notice autocomplete list is blank):

In the end, this is a OS/platform feature. Some platforms require user interaction (approval) before keyboard behavior is modified, while some custom keyboard completely ignore what the application is requesting. You may end up needing to write a custom renderer to set custom keyboard APIs when the RadEntry gets focus.

Further Assistance

If you're still having trouble, please open a new Support Ticket so we can investigate your specific scenario. Please include the following information:

  • The exact version of Telerik UI for Xamarin
  • The exact version of Xamarin.Forms
  • The target platform details (device, OS level, SDK level, etc)
  • The code for what you're using.

With this information, we can attempt to replicate the behavior on that platform and look into what options you have to handle it.

Regards,
Lance | Team Lead - US DevTools Support
Progress Telerik

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
David
Posted on: 06 Dec 2019 16:45

Hello,

 

I've tried the suggested solutions and neither prevent password from showing above the keyboard area where autocomplete/spell check appear.

 

ADMIN
Lance | Manager Technical Support
Posted on: 28 Aug 2019 16:43

Hi David,

You can set the keyboard to Plain, this will not show suggestions.

<input:RadEntry IsPassword="True" Keyboard="Plain" />

In the meantime, if you don't want to set the Keyboard property, you can use a combination of techniques to automatically change it. One example would be to subclass the control and change the Keyboard value it when IsPassword is changed.

public class MyEntry : RadEntry
{
    protected override void OnPropertyChanged(string propertyName = null)
    {
        base.OnPropertyChanged(propertyName);

        if (propertyName == nameof(RadEntry.IsPassword))
        {
            this.Keyboard = this.IsPassword ? Keyboard.Plain : Keyboard.Default;
        }
    }
}

Note that even though this is marked as a Feature Request, it can be tracked in the same way a Bug report. Both of them are tied into the development's work items in the same manner. Click the "follow" button at the top and you'll be notified of status changes immediately.

Regards,
Lance | Technical Support Engineer, Principal
Progress Telerik

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
David
Posted on: 27 Aug 2019 14:28

Hi, this is not a nice to have. This is a SECURITY ISSUE !!!

Please escalate to bug.

ADMIN
Didi
Posted on: 02 Apr 2019 10:55
Hello Martijn,

Thank you for your input on this feature request regarding RadEntry control and RadDataForm PasswordEditor. We are keeping an eye on the item and we'll update it once we schedule the feature for implementation.

Regards,
Didi
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Martijn
Posted on: 02 Apr 2019 10:42
I also found this issue with the dataform custom property and setting DataFormPasswordEditor. This also shows suggestions.