items.icon String (default: '')

Defines the name for an existing icon in a Kendo UI theme or SVG content. The icon is rendered inside the chip by a span.k-icon or span.k-svg-icon element.

See web font icons help article for more details on Kendo UI icons.

Example

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