Skip to main content
All docs
V23.2

TabPanelModel.ActivateTab(String) Method

Activates and expands the specified panel.

Namespace: DevExpress.Blazor.Reporting.Models

Assembly: DevExpress.Blazor.Reporting.v23.2.Viewer.dll

NuGet Package: DevExpress.Blazor.Reporting.Viewer

Declaration

public void ActivateTab(
    string id
)

Parameters

Name Type Description
id String

The panel ID.

Remarks

The following code opens the Export Options panel when a user clicks a button:

@using DevExpress.Blazor.Reporting
@*...*@
<DxButton Click="OnClick"></DxButton>

<DxReportViewer @ref="reportViewer" >
</DxReportViewer>

@code{
    DxReportViewer reportViewer { get; set; }

    void OnClick()
    {
        reportViewer.TabPanelModel.ActivateTab("ReportViewer_Tabs_ExportOptions");
    }
}

For more information on panel IDs, review the following help topic: Tab Panel - Report Viewer for Blazor.

See Also