TreeListView.CheckBoxClick

Syntax

CheckBoxClick: function(sender, args);

Parameters

sender. Event source.

args. Event information:

Description

The CheckBoxClick event occurs before clicking the checkbox.

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Set event
Tree.CheckBoxClick.add( function(sender, args) {
  console.log("CheckBoxClick event:");
  console.log(args);
});
// Initialize event by clicking the checkbox

After executing the example the CheckBoxClick event is added.

See also:

TreeListView