removable Boolean (default: false)

Specifies if the Chip items will be removable or not. If the property is set to true, the Chip renders a remove icon.

Important: Clicking the remove icon will remove the Chip from the ChipList.

Example

<div id="chiplist"></div>
<script>
    $('#chiplist').kendoChipList({
        removable: true,
        items: [
            { icon: 'plus', label: 'Add' },
            { icon: 'pencil', label: 'Edit' },
            { icon: 'trash', label: 'Remove' },
        ]
    });
</script>
In this article