remove

Fires when the user clicks the remove icon of the Chip. After this event, the Chip will not remove itself.

Event Data

e.originalEvent Object

The original DOM event.

e.sender kendo.ui.Chip

The Chip instance that triggered the event.

Example

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

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