items.attributes Object
Defines custom attributes of the Chip's element.
Example
<div id="chiplist"></div>
<script>
$('#chiplist').kendoChipList({
items: [
{ text: "Home", icon: "home", attributes: { "data-val" : "custom data attribute" } },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
});
</script>