Set the Disabled State in Blazor TextBox Component

7 Oct 20211 minute to read

To disable the TextBox, use its Enabled property.

The following example demonstrates the TextBox in a disabled state.

@using Syncfusion.Blazor.Inputs

<SfTextBox Placeholder='First Name' Enabled=false></SfTextBox>

Blazor TextBox in Disabled State