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 |
|
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; }
}
Implements
See Also