Unplanned
Last Updated: 08 May 2025 08:13 by ADMIN
We have an Android device with a scanner. The scanner acts as a keyboard wedge and auto types the scanned item (barcode, tags etc.) into the Entry control and simulates the Enter Key being pressed in the background to execute the Completed event. With the .NET MAUI Entry the Completed event is fired, while with Telerik .NET MAUI Entry (RadEntry), the Completed event is not raised.
In Development
Last Updated: 29 Apr 2025 07:35 by ADMIN

when adding entry to the page a margin is added. The space between the Entry and other controls is significant: 

this is a sample xaml:

	<VerticalStackLayout>
		<telerik:RadEntry  x:Name="entry" Placeholder="telerik entry" BackgroundColor="AntiqueWhite" />
		<telerik:RadEntry x:Name="myentry" Placeholder="telerik entry" BackgroundColor="AntiqueWhite" />
		<Entry Placeholder="maui entry" BackgroundColor="LightBlue"/>
		<Entry Placeholder="maui entry" BackgroundColor="LightBlue"/>
	</VerticalStackLayout>

 

this is the result:

 

Unplanned
Last Updated: 28 Apr 2025 07:28 by Nate
When calling Focus() programmatically, the keyboard does not appear. 
In Development
Last Updated: 25 Apr 2025 13:48 by ADMIN

Text is not centered horizontally on WinUI. 

on maui 9.0.50 text is not visible and hiding the ClearButton does not work

on maui 9.0.40 text is not centered but hiding the ClearButton works

 

Unplanned
Last Updated: 15 Apr 2025 14:11 by James

When setting horizontal text alignment to center, the text in Telerik Entry is not centered. In MAUI entry works. 

<ContentPage.Resources>
		<ResourceDictionary>
			<Style TargetType="telerik:RadEntry" x:Key="entry">
				<Setter Property="HeightRequest" Value="{OnPlatform WinUI=36,Android=40}"/>
				<Setter Property="WidthRequest"  Value="{OnPlatform WinUI=40,Android=40}"/>
				<Setter Property="MinimumWidthRequest"  Value="{OnPlatform WinUI=0,Android=10}"/>
				<Setter Property="MaxLength" Value="2"/>
				<Setter Property="FontSize" Value="15"/>
				<Setter Property="Margin" Value="0,0"/>
				<Setter Property="HorizontalTextAlignment" Value="Center"/>
				<Setter Property="VerticalTextAlignment" Value="Center"/>
				<Setter Property="HorizontalOptions" Value="Center"/>
			</Style>

			<Style TargetType="Entry" x:Key="mystyle">
				<Setter Property="HeightRequest" Value="{OnPlatform WinUI=36,Android=40}"/>
				<Setter Property="WidthRequest"  Value="{OnPlatform WinUI=40,Android=40}"/>
				<Setter Property="MinimumWidthRequest"  Value="{OnPlatform WinUI=0,Android=10}"/>
				<Setter Property="MaxLength" Value="2"/>
				<Setter Property="FontSize" Value="15"/>
				<Setter Property="Margin" Value="0,0"/>
				<Setter Property="HorizontalTextAlignment" Value="Center"/>
				<Setter Property="VerticalTextAlignment" Value="Center"/>
				<Setter Property="HorizontalOptions" Value="Center"/>
			</Style>
		</ResourceDictionary>
	</ContentPage.Resources>

	<VerticalStackLayout Spacing="10">
		<Entry Text="99" Style="{StaticResource mystyle}"/>
		<telerik:RadEntry Text="99" x:Name="entry" Style="{StaticResource entry}"
						  ClearButtonVisibility="Never" />

	</VerticalStackLayout>

 

Declined
Last Updated: 27 Mar 2025 09:01 by ADMIN

Currently, when setting Numeric keyboard, on Mac and windows you can also enter non-numeric characters.

Provide an option when keyboard is numeric, the entry to replace its internal input control, so only numeric values to be entered.

 

Similar feature is opened for maui Entry: https://github.com/dotnet/maui/issues/9201

Completed
Last Updated: 12 Feb 2025 09:06 by ADMIN
Release 10.0.0 (2025 Q1)

When updating to Telerik MAUI 8.0.0 and building the app on Android 5.1 the controls that use RadTextInput internally crash

Controls like, DataGrid, RadEntry, ComboBox, AutoComplete, Numeric, Masked

UNHANDLED EXCEPTION:
[MonoDroid] Java.Lang.NoSuchMethodError: no non-static method "Landroidx/appcompat/widget/AppCompatEditText;.getTextCursorDrawable()Landroid/graphics/drawable/Drawable;"
[MonoDroid]    at Java.Interop.JniEnvironment.InstanceMethods.GetMethodID(JniObjectReference type, String name, String signature)
[MonoDroid]    at Java.Interop.JniType.GetInstanceMethod(String name, String signature)
[MonoDroid]    at Java.Interop.JniPeerMembers.JniInstanceMethods.GetMethodInfo(String method, String signature)
[MonoDroid]    at Java.Interop.JniPeerMembers.JniInstanceMethods.GetMethodInfo(String encodedMember)
[MonoDroid]    at Java.Interop.JniPeerMembers.JniInstanceMethods.InvokeVirtualObjectMethod(String encodedMember, IJavaPeerable self, JniArgumentValue* parameters)
[MonoDroid]    at Android.Widget.TextView.get_TextCursorDrawable()
[MonoDroid]    at Telerik.Maui.Handlers.RadTextInputHandler.MapCustomCursorColor(RadTextInputHandler handler, IRadTextInput virtualElement)
[MonoDroid]    at Microsoft.Maui.PropertyMapper`2.<>c__DisplayClass5_0[[Telerik.Maui.IRadTextInput, Telerik.Maui.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=5803cfa389c90ce7],[Telerik.Maui.Handlers.RadTextInputHandler, Telerik.Maui.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=5803cfa389c90ce7]].<Add>b__0(IElementHandler h, IElement v)
[MonoDroid]    at Microsoft.Maui.PropertyMapper.UpdatePropertyCore(String key, IElementHandler viewHandler, IElement virtualView)
[MonoDroid]    at Microsoft.Maui.PropertyMapper.UpdateProperties(IElementHandler viewHandler, IElemen

.....

Unplanned
Last Updated: 09 Feb 2025 10:43 by ADMIN
Created by: Larry
Comments: 5
Category: Entry
Type: Feature Request
27

I'm looking to replace the Xamarin RadRichTextEditor control in my Maui app. The Maui native Editor control is good but doesn't scroll.

And to be honest, the RadRichTextEditor gave me more trouble than it was worth (I loved the functionality, but it wasn't a good fit for my implementation).

So, adding the appropriate support to RadEntry to make it more of a 'multiline text editor' or even a 'mini word processor' would be awesome.

Completed
Last Updated: 20 Dec 2024 07:41 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: PalmSens
Comments: 1
Category: Entry
Type: Feature Request
1
Provide an option to style the validation error message and entry border.
Completed
Last Updated: 20 Dec 2024 07:38 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Nelson
Comments: 1
Category: Entry
Type: Feature Request
2
I want to change the clear button icon in RadEntry

For example the RadComBoBox has ClearButtonStyle, while RadEntry has separate properties for clear button color, hover: https://docs.telerik.com/devtools/maui/controls/entry/styling#clear-button-style and no text property
Unplanned
Last Updated: 22 Nov 2024 12:37 by ADMIN
there is a color for the text, still the opacity does not change when switching between disabled and normal states and there is a binding for the Entry.IsEnabled property. 
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)

When setting BorderBrush, BorderThickess, FocusedBorderBrush and FocusedBorderThickness do not apply on the entire entry control, they apply only on bottom. 

<VerticalStackLayout>
    <telerik:RadEntry Text="Hello World" TextColor="DarkRed" 
                        Background="Wheat"
                        FocusedBorderBrush="Yellow"
                        FocusedBorderThickness="10"
                        x:Name="entry" 
                        BorderBrush="DarkRed"
                        BorderThickness="8"
                        CornerRadius="5,7,7,5"
                        WidthRequest="150"/>
</VerticalStackLayout>

And the result:


 

Workaround: 

Place the entry in a RadBorder:

<telerik:RadBorder BorderColor="Red" CornerRadius="5,7,7,5" BorderThickness="4,4,4,4">
              <telerik:RadEntry Text="Hello World" TextColor="DarkRed" Background="Wheat" x:Name="entry" /> </telerik:RadBorder>

Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
Created by: Larry
Comments: 0
Category: Entry
Type: Bug Report
0

Text is not centered vertically on WinUI with latest Maui. The issue also affects NumericInput control as RadEntry is used internally. 

Unplanned
Last Updated: 24 Jul 2024 06:14 by Benjamin

I tried the following and the custom context menu does not apply: 

<telerik:RadEntry x:Name="telerikEntry">
    <FlyoutBase.ContextFlyout>
        <MenuFlyout>
            <MenuFlyoutItem Text="Custom flyout telrik radentry"
                            Clicked="MenuFlyoutItem_Clicked">
            </MenuFlyoutItem>
        </MenuFlyout>
    </FlyoutBase.ContextFlyout>
</telerik:RadEntry>

It works for MAUI Entry. Provide this menu for Telerik MAUI RadEntry too. 

 

 

 

Unplanned
Last Updated: 16 May 2024 11:33 by Sunali

Request for a manual Done button to be added to any of the existing Telerik controls when using numeric keyboard.

Request for RadEntry, NumericInput.

 

The MAUI Editor has manual done button above the Numeric keyboard, so the keyboard can be dismissed when pressing on this button.

Need More Info
Last Updated: 12 Apr 2024 07:41 by ADMIN
Created by: atlanta
Comments: 1
Category: Entry
Type: Feature Request
3
The Entry control should expose an event after ClearButton click
Unplanned
Last Updated: 10 Apr 2024 14:52 by ADMIN

There is android platform specific attached property ImeOption for entry control.

 <Entry x:Name="Default" FontSize="22" Placeholder="Default" Keyboard="Numeric" android:Entry.ImeOptions="Next" />

Please provide an option to use this property for Telerik MAUI RadEntry. 

Completed
Last Updated: 31 Jan 2024 15:50 by Doug
Release 6.7.0

Runtime exception with latest Microsoft .NET iOS sdk 8.0.100 17.0.8490

Exception: 

 TelerikTestForSimulator[24646:547905] *** NSForwarding: warning: object 0x60000289d5c0 of class 'Telerik_Maui_InputElement_RadTextField' does not implement methodSignatureForSelector: -- trouble ahead
 TelerikTestForSimulator[24646:547905] *** NSForwarding: warning: object 0x60000289d5c0 of class 'Telerik_Maui_InputElement_RadTextField' does not implement doesNotRecognizeSelector: -- abort

Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0

Keyboard remains open on iOS when taping outside of Entry control. 

There is a workaround for the MAUI Entry control by setting the HideSoftInputOnTap property on the Pagel, but this property does not work on RadEntry. The keyboard remains open. 

Completed
Last Updated: 07 Jun 2023 07:41 by ADMIN
Release 5.2.0

A line going through the clear button of the RadEntry control. The behavior is reproduced on Android 9.0

1 2