item

Get item's element by index.

Parameters

index Number|String (required)

The zero-based index of the item.

Returns

jQuery the found item at the specified index.

Example

<div id="chiplist"></div>

<script>
    var chiplist = $("#chiplist").kendoChipList({
        items: [
            { label: "Home", icon: "home", enabled: false },
            { label: "Info", icon: "info-circle" },
            { label: "Contact", icon: "envelope" }
        ]
    }).data("kendoChipList");

    var home = chiplist.item(0);
    chiplist.enable(home, true);
</script>
In this article