RibbonView.Exported

Syntax

Exported: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The Exported event occurs when saving the report to the file of non-internal format.

Example

To execute this example the HTML page must contain the ReportBox component named reportBox. Add a handler for the Exported event:

reportBox.getRibbonView().Exported.add(function (sender, args) {

       alert("Report export")

})

After the user runs the main menu command Save As > [available export option]> and clicks the OK button in the export dialog box, the "Report Export" message is displayed.

See also:

RibbonView