Rendered function (sender, args)
sender. Event source.
args. Event information.
The Rendered event occurs on report table rendering.
The table is drawn on opening the report, on moving to another table sheet, or on refreshing table data.
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: