Tab Panel - Report Viewer for Blazor
In This Article
#Tabs
Tab Id | Icon | Panel |
---|---|---|
Report |
![]() |
Parameters Panel |
Report |
![]() |
Search Panel |
Report |
![]() |
Document Map Panel |
Report |
![]() |
Export Options Panel |
#Customization
Use the DxReportViewer.TabPanelModel property to access the Tab Panel.
The following code creates a button that activates the Document Map Panel:
razor
@using DevExpress.Blazor.Reporting
@using DevExpress.XtraReports.UI
@*...*@
<DxButton Click="OnClick"></DxButton>
<DxReportViewer @ref="reportViewer" Report="@Report" >
</DxReportViewer>
@code{
DxReportViewer reportViewer { get; set; }
XtraReport Report { get; set; }
// ...
void OnClick()
{
reportViewer.TabPanelModel.ActivateTab("ReportViewer_Tabs_Search");
}
}