Skip to main content

DxListBox<TData, TValue>.Enabled Property

Specifies whether the List Box can respond to user interactions.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.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 List Box; otherwise, true.

Remarks

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

<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: ListBox - Read-Only and Disabled Modes

Implements

DevExpress.Blazor.IListBox<TData, TValue>.Enabled
See Also