CheckBoxClick: function(sender, args);
sender. Event source.
args. Event information.
The CheckBoxClick event is fired on clicking the checkbox.
The checkboxes are displayed if the CheckBoxes property is set to True.
NOTE. The CheckBoxClick event is fired after the CheckedChanged event.
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: