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

Remove

events

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.

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

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