click

Fires when the user clicks the content of the Chip or activates it with the Enter or Space keys.

Event Data

e.originalEvent Object

The original DOM event.

e.sender kendo.ui.Chip

The Chip instance that triggered the event.

Example

Open In Dojo
<span id="chip"></span>

<script>
    $("#chip").kendoChip({
        label: "Chip",
        selectable: true,
        click: function (ev) {
            var chip = ev.sender;
            alert(chip.element.text());
        }
    })
</script>
In this article