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.

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: 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

Unplanned
Last Updated: 16 Jun 2022 15:19 by Rodney
Currently, the keyboard is shown/hidden on GotFocus/LostFocus, provide a way to override the default implementation and manually control whether the keyboard should be hidden on LostFocus.
Completed
Last Updated: 11 May 2022 14:50 by ADMIN
Release R2 2022
Created by: Amitesh
Comments: 0
Category: Entry
Type: Bug Report
1
On Android if the text is longer than the input field and it is set from OnAppearing method, RadEntry displays the ending of the text instead of the beginning.

Also, the issue can be reproduced

when the Entry text is set in code behind, for example on button click:
private void Button_Clicked(object sender, System.EventArgs e)
        {
            this.radEntry.Text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ";
        }



inside the AutoCompleteView control when select an item from the suggestion items list. 
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.

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: 09 Mar 2021 08:42 by ADMIN
Created by: Manager
Comments: 0
Category: Entry
Type: Feature Request
1
option to change cursor (caret) color of RadAutoCompleteView, 
RadEntry control
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: 15 Feb 2021 09:03 by ADMIN
Release R1 2021
ADMIN
Created by: Lance | 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: 20 Jan 2021 11:07 by ADMIN
Release R1 2021
Created by: James
Comments: 1
Category: Entry
Type: Bug Report
1

On UWP, setting the RadEntry's TextColor has no effect.

Reproducible

<input:RadEntry Text="Hello" TextColor="Red" />

Runtime

Environment Details

  • VS 2019 16.8.3
  • UWP Target SDK 19041
  • Windows 10 2004
  • Xamarin.Forms 4.8.1560
  • Telerik UI for Xamarin 2020.1208

 

 

 

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
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: 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
Declined
Last Updated: 21 Apr 2020 09:21 by ADMIN
Created by: Carl Lorenze
Comments: 2
Category: Entry
Type: Bug Report
1

My Rad Entry Doesn't Work in my Emulator but the other controls is working.

This is my Xaml:

this is the my Emulator the Radentry is does doesn't Working.

 

Please Help me...

Advance Thank youu

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: 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.
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: 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
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.
1 2