Feature request for Password Component

Dear Radzen team,

Could you please for the Password Component make an option to show the password.

Thank you!

Hi @Agefer,

We probably won't add support for this as it is quite easy to implement with two components (TextBox and Password bound to the same property) by toggling their Visible property.

<RadzenPassword @bind-Value="@password" Visible="@passwordVisible" />
<RadzenTextBox @bind-Value="@password" Visible="@(passwordVisible == false)" />

Show password <RadzenCheckBox @bind-Value="@passwordVisible" />

@code {
    bool passwordVisible = true;
}
1 Like