New to Telerik UI for ASP.NET CoreStart a free 30-day trial

ChipList Overview

The Telerik UI ChipList TagHelper and HtmlHelper for ASP.NET Core are server-side wrappers for the Kendo UI ChipList component.

The ChipList acts as a container for two or more individual Chip components and allows you to maintain a set of selected chips. They represent a complex piece of information in a compact form—for example, an entity that can be a person, a place, or a thing. Each chip from the list can be selected or removed and supports various styling options. The ChipList component is commonly used for single or multiple selections such as additions to an ordered meal.

Initializing the Chip

The following example demonstrates how to initialize the ChipList.

Razor
    @using Kendo.Mvc.UI

    @(Html.Kendo().ChipList()
        .Name("chiplist")
        .Items(item=>{
            item.Add().Label("One");
            item.Add().Label("Two");
            item.Add().Label("Three");
        })
    )

Functionality and Features

  • Customization—You can specify icons for the item content of the chips displayed in the ChipList.
  • Appearance—The ChipList delivers a number of ready-to-use, predefined sets of styling options.

Next Steps

See Also