New to Kendo UI for jQueryStart a free 30-day trial

Click

events

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.

<span id="chip"></span>

<script>
    $("#chip").kendoChip({
        label: "Chip",
        selectable: true,
        click: function (ev) {
            var chip = ev.sender;
            alert(chip.element.text());
        }
    })
</script>
Not finding the help you need?
Contact Support