How to set the disabled state in Blazor TextBox

27 Aug 20261 minute to read

Disable the Blazor TextBox by setting its Enabled property to false. A disabled Blazor TextBox is non-interactive, excluded from keyboard focus (tab order), and does not raise input events.

The following example demonstrates the Blazor TextBox in a disabled state.

@using Syncfusion.Blazor.Inputs

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

Blazor TextBox in Disabled State