items Array
The configurations of the different chips inside the chiplist.
Example
<div id="chiplist"></div>
<script>
$('#chiplist').kendoChipList({
items: [
{ icon: 'plus', label: 'Add' },
{ icon: 'pencil', label: 'Edit' },
{ icon: 'trash', label: 'Remove' },
]
});
</script>