PasswordChanged: function (sender, args)
sender. Event source
args. Event information.
The PasswordChanged event occurs after password change.
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.
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: