ResizeEnd: function(sender, args);
sender. Event source.
args. Event information:
Width. Number. Column width.
The ResizeEnd event occurs after changing column width by mouse.
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.ResizeEnd.add( function(sender, args) {
console.log("ResizeEnd event:");
console.log(args);
});
// Initialize event by stretching the first column by mouse.
After executing the example the event is added.
See also: