items.selected Boolean (default: false)

Toggles the selected state of the Chip.

Example

<div id="chiplist"></div>
<script>
    $('#chiplist').kendoChipList({
        selectable: "single",
        items: [
            { label: "Default selection" },
            { label: "Pre-selected", selected: true },
        ]
    });
</script>
In this article