Unplanned
Last Updated: 03 Sep 2024 11:35 by ADMIN
Created by: Larry
Comments: 4
Category: Entry
Type: Feature Request
26

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

 

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

 

Unplanned
Last Updated: 04 Feb 2022 10:37 by ADMIN
I would like to force the character casing in a RadEntry (Upper, TitleCase etc...).
1 2