Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxTabBase.Enabled Property

Specifies whether the tab or tab page is enabled.

Namespace: DevExpress.Blazor.Base

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

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

#Property Value

Type Default Description
Boolean true

true to enable the tab; otherwise, false.

#Remarks

Set the Enabled property to false to disable the tab or tab page. Users cannot interact with disabled tabs. If the current active tab becomes disabled, the DxTabs component updates the ActiveTabIndex property value.

razor
<DxTabs>
    <DxTab Text="Personal Information" Enabled="false" />
    <DxTab Text="Work Information" />
    <DxTab Text="Contact Information" />
</DxTabs>

Disabled tab

#Implements

See Also