ResizeStart: function(sender, args);
sender. Event source.
args. Event information:
Width. Number. Column width before dragging.
The ResizeStart event occurs before changing column width by mouse.
Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).
// Set event
// Set title
caps = Tree.getCaptions();
cap = caps.getCaptions()[0];
// Set event
cap.ResizeStart.add( function(sender, args) {
console.log("ResizeStart event:");
console.log(args);
});
// Initialize event by stretching the first column by mouse.
After executing the example the event is added.
See also: