Skip to main content
All docs
V25.1
  • TabPanelModel.ActivateTab(String) Method

    Activates and expands the specified panel.

    Namespace: DevExpress.Blazor.Reporting.Models

    Assembly: DevExpress.Blazor.v25.1.Viewer.dll

    NuGet Package: DevExpress.Blazor.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