SetHasHeaderCompleted: function (sender, args)
sender. Event source.
args. Event information.
The SetHasHeaderCompleted event occurs on checking or unchecking the box First row contains headings.
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 SetHasHeaderCompleted event:
dataImportService.SetHasHeaderCompleted.add(function (sender, args)
{
alert("HasHeaderCompleted")
});
After executing the example selecting or deselecting the First Row Contains Headings checkbox on the first stage of the wizard shows the following message: HasHeaderCompleted.
See also: