Skip to main content
All docs
V24.2

DxEditorBase.Enabled Property

Specifies whether the component can respond to user interactions.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(true)]
[Parameter]
public bool Enabled { get; set; }

Property Value

Type Default Description
Boolean true

false to disable the component; otherwise, true.

Remarks

When the Enabled property is set to false, the component does not respond to user interactions and users cannot change the editor’s value. In this mode, the component cannot be focused or navigated.

The following code disables the List Box component:

<DxListBox Data="@Cities" 
           @bind-Values="@Values" 
           Enabled="false">
</DxListBox>

@code {
  IEnumerable<string> Cities = new List<string>() {
    "London",
    "Berlin",
    "Paris",
  };

  IEnumerable<string> Values { get; set; } 
}

Run Demo: Data Editors - Read-Only and Disabled Modes

Implements

See Also