ListCaption.ResizeEnd

Syntax

ResizeEnd: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The ResizeEnd event occurs after changing column width by mouse.

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.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:

ListCaption