ListCaption.Changed

Syntax

Changed: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The Changed event occurs after changing any title properties affecting displaying.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Get title
caps = Tree.getCaptions();
cap = caps.getCaptions()[0];
// Set event
cap.Changed.add( function(sender, args) {
  console.log("Changed event:");
  console.log(args);
});
// Initialize event
cap.setWidth(200);

After executing the example the event is added.

See also:

ListCaption