Completed
Last Updated: 01 Mar 2023 16:59 by ADMIN
Created by: Daniel
Comments: 1
Category: Entry
Type: Bug Report
0

The Placeholder position is not in sync with the Entry's Text, it is always top-left aligned.

Here's a quick screenshot of what happens when the RadEntry is larger than the default.


This has the side effect of not being aligned with the Text.

Suggested Solution

There are several ways I can think of to approach this, but I think the easiest way would be to just bind the top level control's VerticalTextAlignment property value on the internal Label being used for the Placeholder

<telerik:RadEntry Placeholder="Name"
                              WidthRequest="280"
                              HeightRequest="100"
                              VerticalTextAlignment="End"/>

Completed
Last Updated: 15 Mar 2023 11:32 by ADMIN
Release 5.1.0
When the culture requires "," as decimal separator, the numeric keyboard shows "." and cannot enter ","
Declined
Last Updated: 08 Feb 2023 09:39 by ADMIN

On Android: RadEntry and .NET Maui Entry behavior are identical. When unfocused, the focused background is still applied.

On WinUI: RadEntry and .NET Maui behavior when are unfocused, the focused background is still applied. When RadEntry is in the "Focused" and "PointerOver" visual states, the control behavior is with the default state. When .NET Maui Entry is in the "Focused" and "PointerOver" visual states, the control behavior is with the "PoinetOver" visual state.

On iOS and MacCatalys: When RadEntry is unfocused, the focused background is still applied.

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

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

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>

 

Unplanned
Last Updated: 28 Apr 2025 07:28 by Nate
When calling Focus() programmatically, the keyboard does not appear. 
1 2