Navigator.PasswordChanging

Syntax

PasswordChanging: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The PasswordChanging event occurs on password change.

Comments

This 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 PasswordChanging event:

nav.PasswordChanging.add(function () { alert("Password is changing") });

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

See also:

Navigator