GetRowsCompleted: function (sender, args)
sender. Event source.
args. Event information.
The GetRowsCompleted event occurs on loading rows to table.
Click the text Load next 10 records... text on thefirst step of the data import wizard.
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: