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: 14 Jul 2025 07:56 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 May 2023 20:55 by Craig
Created by: Craig
Comments: 0
Category: Entry
Type: Feature Request
3

Hi Team,

I need to be able to set the color of the selection highlight.

  • On WinUI/UWP you can do this using the TextBox.SelectionHighlightColor
  • On iOS and MacCatalyst, it is done using the UITextField.TintColor.
  • On Android, it is ColorAccent

Can you please add a new top-level property on the .NET MAUI RadEntry control that allows us to set this?

Thank you,

Craig

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.

Unplanned
Last Updated: 09 Feb 2023 11:09 by Aram
Provide an API for changing the color of the Caret (cursor).
The same is valid for the RadEntry control which is used internally in the AutoComplete
Unplanned
Last Updated: 23 May 2023 07:28 by Hakob
Created by: Hakob
Comments: 0
Category: Entry
Type: Feature Request
2
Provide an option to change the cursor(caret) color for Entry, AutoComplete and ComboBox.
Unplanned
Last Updated: 04 Feb 2022 10:37 by ADMIN
I would like to force the character casing in a RadEntry (Upper, TitleCase etc...).
Unplanned
Last Updated: 21 Dec 2022 09:23 by ADMIN
Created by: Mads
Comments: 0
Category: Entry
Type: Feature Request
1

Hi Team,

I would like to be able to use standard .NET data annotations on my bound property with the RadEntry's validation features.

For example, the following MaxLength attribute:

[MaxLength(12)]
public string CustomerId
{
    get => customerId;
    set => SetProperty(ref customerId, value);
}

 

Thank you,

Mads

Unplanned
Last Updated: 19 May 2026 13:02 by ADMIN
When using the Telerik RadTextInput control with TextTransform="Uppercase", if you edit text in the middle of the input (e.g., change "MSFT" to "MEFT" by replacing "S" with "E") while caps lock is OFF, the cursor jumps to the end of the text after typing. However, if caps lock is ON, the cursor remains in the correct position after editing.
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: 19 May 2026 16:10 by Fred
When the RadEntry is added inside a multi window and having a disabled state,  ObjectDisposedException  is raised in custom scenario with opening closing windows,