DataImportService.GetRowsCompleted

Syntax

GetRowsCompleted: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The GetRowsCompleted event occurs on loading rows to table.

Comments

Click the text Load next 10 records... text on thefirst step of the data import wizard.

Example

To execute the example, the page must contain ImportDataWizard component and a service used to work with data import, named dataImportService (see Example of creating the ImportDataWizard component). Add a handler for the GetRowsCompleted event:

dataImportService.GetRowsCompleted.add(function (sender, args)

{

    alert("RowsCompleted")

});

After executing the example clicking the Load next 10 records... text in the first step of the data import wizard shows the message: RowsCompleted.

See also:

DataImportService