Skip to main content
All docs
V18.2

ASPxClientReportDesigner.GetCurrentTab() Method

Returns the currently active tab in the Web Report Designer.

Namespace: DevExpress.XtraReports.Web.Scripts

Assembly: DevExpress.XtraReports.v18.2.Web.Scripts.dll

Declaration

public ASPxDesignerNavigateTab GetCurrentTab()

Returns

Type Description
ASPxDesignerNavigateTab

An object that specifies the Report Designer tab.

Remarks

The following code snippet demonstrates how to get the currently active tab and use its ASPxDesignerNavigateTab.refresh method to reopen an assigned report.

<script type="text/javascript">       
    function Refresh() {
        var tab = reportDesigner.GetCurrentTab();
        tab.refresh();
    }
</script>

<div onclick="Refresh()">Refresh</div>
<dx:ASPxReportDesigner ID="ASPxReportDesigner1" ClientInstanceName="reportDesigner" runat="server" />
See Also