ListCaption.ResizeStart

Syntax

ResizeStart: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The ResizeStart event occurs before changing column width by mouse.

Example

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:

ListCaption