blazor-devexpress-dot-blazor-dot-base-dot-dxeditorbase-3c94c1fc.md
Specifies whether the component can respond to user interactions.
Namespace : DevExpress.Blazor.Base
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(true)]
[Parameter]
public bool Enabled { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
false to disable the component; otherwise, true.
|
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
See Also