New Rad Entry - not apply to Text property

1 Answer 98 Views
Entry
Daniel
Top achievements
Rank 1
Silver
Bronze
Daniel asked on 29 Mar 2022, 11:49 AM

Hi,

New Rad Entry - not apply to Text property ignore this value.

In Microsoft is ok.

    <telerikMauiControls:RadEntry Grid.Row="3" Grid.Column ="0"  x:Name="txtPassword" FontSize="14" Margin="0,15,0,0" Placeholder="Password"  HorizontalOptions="Center" VerticalOptions="Center" WidthRequest="280" IsPassword="True"  Text="1234" />
          

Thanks,

1 Answer, 1 is accepted

Sort by
0
Lance | Senior Manager Technical Support
Telerik team
answered on 29 Mar 2022, 02:12 PM

Hi Daniel,

I've opened a bug report for this  https://feedback.telerik.com/maui/1559549 . I do not have a workaround for you.

If you must pre-set the user's password, then you need to do it at runtime (after the component is rendered). For example wait 0.5s after the page is loaded

protected override async void OnAppearing()
{
    base.OnAppearing();

 // Important: Wait for the page to finish rendering and loading. If it is a very complex page, this number might need to be higher
    await Task.Delay(500);

    txtPassword.Text = "1234";
}

 

Regards,
Lance | Manager Technical Support
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Daniel
Top achievements
Rank 1
Silver
Bronze
commented on 29 Mar 2022, 02:22 PM

No need-:)

I only reported on bug.

Lance | Senior Manager Technical Support
Telerik team
commented on 29 Mar 2022, 02:52 PM

Thank you!
Tags
Entry
Asked by
Daniel
Top achievements
Rank 1
Silver
Bronze
Answers by
Lance | Senior Manager Technical Support
Telerik team
Share this question
or