GridView.Rendered

Syntax

Rendered function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The Rendered event occurs on report table rendering.

Comments

The table is drawn on opening the report, on moving to another table sheet, or on refreshing table data.

Example

To execute this example, the HTML page must contain a ReportBox component named reportBox (see Example of the ReportBox Component Layout). Add an event handler for

Rendered:

reportBox.getDataView().getGridView().Rendered.add(function (sender, args) {

       alert ("Table rendering")

});

After executing the example on rendering a table the following message is displayed: Table rendering.

See also:

GridView