Navigator.ObjectSelected

Syntax

ObjectSelected:  function (sender, args)

Parameters

sender. Event source

args. Event information.

Description

The ObjectSelected event occurs on changing selection in the object list.

Example

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

nav.ObjectSelected.add(function () { alert("Object is selected") });

After executing the example changing the selection in the list of objects the "Object is selected" message is displayed.

See also:

Navigator