TreeList.CheckBoxClick

Syntax

CheckBoxClick: function(sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The CheckBoxClick event is fired on clicking the checkbox.

Comments

The checkboxes are displayed if the CheckBoxes property is set to True.

NOTE. The CheckBoxClick event is fired after the CheckedChanged event.

Example

To execute this example, create a TreeList component named treeListSett. Add a handler for the CheckBoxClick event:

treeListSett.CheckBoxClick.add(function (sender, args)

{

   console.log("Checkbox clicking");

});

After executing the example, on clicking a checkbox the console displays the message  about checkbox clicking:

Checkbox is clicked

See also:

TreeList