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>

 

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: 04 Feb 2022 10:37 by ADMIN
I would like to force the character casing in a RadEntry (Upper, TitleCase etc...).
1 2