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. 

 

 

 

In Development
Last Updated: 01 Jul 2024 07:25 by ADMIN
Scheduled for 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: 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. 

Unplanned
Last Updated: 07 Mar 2024 14:40 by ADMIN
Created by: Larry
Comments: 3
Category: Entry
Type: Feature Request
23

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.

Unplanned
Last Updated: 06 Mar 2024 13:33 by ADMIN

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

Unplanned
Last Updated: 06 Oct 2023 07:57 by Nelson
Created by: Nelson
Comments: 0
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
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

Unplanned
Last Updated: 23 May 2023 07:28 by Hakob
Created by: Hakob
Comments: 0
Category: Entry
Type: Feature Request
1
Provide an option to change the cursor(caret) color for Entry, AutoComplete and ComboBox.
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

Completed
Last Updated: 25 Apr 2023 11:19 by ADMIN
Created by: Daniel
Comments: 1
Category: Entry
Type: Bug Report
0

When you've set IsPassword=True and have an initial value for Text, that value is ignored (only the watermark is shown).

Reproducible on .NET MAUI peview14 using UI for MAUI 0.6.0 with the following code

<telerik:RadEntry Placeholder="Password" Text="1234" IsPassword="True"/>

 

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 ","
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"/>

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

Unplanned
Last Updated: 18 Jan 2023 13:33 by PalmSens
Created by: PalmSens
Comments: 0
Category: Entry
Type: Feature Request
1
Provide an option to style the validation error message and entry border.
Completed
Last Updated: 18 Jan 2023 12:29 by ADMIN
Release 5.0.0
Created by: Daniel
Comments: 0
Category: Entry
Type: Bug Report
1

On Windows when IsReadOnly state changes to true, the control state does not change, you can still edit the text. 

Example:

<VerticalStackLayout >
            <Switch IsToggled="{Binding IsReadOnly,Source={x:Reference EntryShareName}}"/>
            <telerik:RadEntry x:Name="EntryShareName"
                                FontSize="14"
                                Placeholder="Enter text here"
                                PlaceholderColor="#99000000"
                                AutomationId="radEntry">
            </telerik:RadEntry>
        </VerticalStackLayout>

 

1 2