New to Telerik UI for ASP.NET Core? Download free 30-day trial

Items

The Telerik UI for ASP.NET Core DropDownButton provides a various set of options for its Items.

The following example demonstrates how to configure the DropDownButton items.

    @(Html.Kendo().DropDownButton()
        .Name("DropDownButton")
        .Icon("clipboard")
        .Items(items =>
        {
            items.Add().Id("keep-text").Text("Keep Text Only").Icon("clipboard-text");
            items.Add().Id("paste-html").Text("Paste as HTML").Icon("clipboard-code").Hidden(true);
            items.Add().Id("paste-markdown").Text("Paste Markdown").Icon("clipboard-markdown").Enabled(false);
            items.Add().Id("favorite").Text("Mark As Favorite").ImageUrl(Url.Content("~/content/shared/icons/16/star.png"));
        })
    )
   <kendo-dropdownbutton name="DropDownButton" text="Paste" icon="clipboard">
        <dropdownbutton-items>
            <item id="keep-text" text="Keep Text Only" icon="clipboard-text"></item>
            <item id="paste-html" text="Paste as HTML" icon="clipboard-code" hidden="true"></item>
            <item id="paste-markdown" text="Paste Markdown" icon="clipboard-markdown" enabled="false"></item>
            <item id="favourite" text="Mark As Favourite" image-url="@Url.Content("~/content/shared/icons/16/star.png")"></item>
        </dropdownbutton-items>
   </kendo-dropdownbutton>

See Also

In this article