DxDropDownBox.Enabled Property
Specifies whether the editor is enabled.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.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 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.
<DxDropDownBox @bind-Value="Value" QueryDisplayText="QueryText" Enabled="false" >
<DropDownBodyTemplate>
<DxListBox ... />
</DropDownBodyTemplate>
</DxDropDownBox>
Implements
See Also