selectable String (default: 'none')

Sets the selection mode of the ChipList.

The available values are:

  • none (default)
  • single
  • multiple

Example

<div id="chiplist"></div>
<script>
    $('#chiplist').kendoChipList({
        selectable: 'multiple',
        items: [
            { label: 'One' },
            { label: 'Two' },
            { label: 'Three' }
        ]
    });
</script>
In this article