How to set the disabled state in Blazor TextBox

14 Aug 20261 minute to read

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

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