items.selected Boolean (default: false)

    Toggles the selected state of the Chip.

    Example

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