NavigatorRibbon.ImportDataClick

Syntax

PropertyChanged: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The ImportDataClick event occurs after clicking the Data Import button.

Comments

The password change dialog box opens on selecting the Service > Data Import item.

Example

To execute the example, the HTML page must contain the Navigator component named nav (see Example of Creating the Navigator Component). Add a handler of the ImportDataClick event:

// Get the NavigatorRibbon component
navRib = nav.getRibbonView();
// Add an event handler
navRib.ImportDataClick.add(function () { alert("Data import") });

After executing the example, clicking the Data Import button displays the "Data Import" message.

See also:

NavigatorRibbon