Navigator.PasswordChanged

Syntax

PasswordChanged: function (sender, args)

Parameters

sender. Event source

args. Event information.

Description

The PasswordChanged event occurs after password change.

Comments

The event occurs on clicking the OK button in the password change dialog box. To open the password change dialog box, select the Tools > Change Password item in the main menu.

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 PasswordChanged event:

nav.PasswordChanged.add(function () { alert("Password is changed") });

After executing the example, clicking the OK button in the password change dialog box displays the following message: Password changed.

See also:

Navigator