Changed: function(sender, args);
sender. Event source.
args. Event information:
Changed. Object. Changed title.
Type. String. Changed property.
The Changed event occurs after changing any title properties affecting displaying.
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 caps.Changed.add( function(sender, args) { console.log("Changed event:"); console.log(args); }); // Initialize event cap.setWidth(200);
After executing the example the Changed event is added.
See also: