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

Select

events

Fires when the selection of a selectable the Chip toggles.

Event Data

e.originalEvent Object

The original DOM event.

e.sender kendo.ui.Chip

The Chip instance that triggered the event.

e.preventDefault Function

If invoked prevents the Chip selection change.

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

<script>
    $("#chip").kendoChip({
        label: "Chip",
        selectable: true,
        select: function (ev) {
            var chip = ev.sender;

            // prevent selection
            ev.preventDefault();
            alert("Selection prevented");
        }
    })
</script>
Not finding the help you need?
Contact Support