Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET 6.0+ platform documentation. This link will take you to the parent topic of the current section.

WebDashboardActionsController Class

A ViewController that provides the ShowDashboardInSeparateTab, ExportDashboard and SetDashboardParameters Actions.

Namespace: DevExpress.ExpressApp.Dashboards.Web

Assembly: DevExpress.ExpressApp.Dashboards.Web.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Dashboards.Web

Declaration

public class WebDashboardActionsController :
    ObjectViewController<DetailView, IDashboardData>

Remarks

The WebDashboardActionsController Controller is activated in Detail Views of the IDashboardData objects. You can use the following properties to access the Controller’s Actions in your code.

Property Action ID Description
WebDashboardActionsController.ShowDashboardInSeparateTabAction ShowDashboardInSeparateTab Opens the current dashboard in a new browser tab. Inactive if the WebApplication.EnableMultipleBrowserTabsSupport property is set to false.
WebDashboardActionsController.ExportDashboardAction ExportDashboard Exports the current dashboard to the image, PDF, XLSX or XML file. Inactive if the WebDashboardViewerViewItem.IsDashboardExportAllowed property of the dashboard’s View Item is set to false.
WebDashboardActionsController.DashboardParametersAction SetDashboardParameters Invokes the Dashboard Parameters dialog. Is active if current dashboard has parameters.

These Actions are highlighted in the image below.

WebDashboardActionsController

Implements

See Also