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

Icons

The Telerik UI for ASP.NET Core Stepper provides to option to configure the icon of each Step.

Step Icon

By default the Stepper displays the number of each step in the indictor element of the Step. The Step icon can be configured via the steps.icon configuration property to an existing icon in the Kendo UI theme sprite. For a list of available icons, refer to the Web Font Icons article.

Example

The following example demonstrates how to configure different icons.

Razor
    @(Html.Kendo().Stepper()
        .Name("stepper")
        .Steps(s =>
        {
            s.Add().Label("First Step").Icon("home");
            s.Add().Label("Second Step").Icon("paperclip");
            s.Add().Label("Last Step").Icon("save");
        })
    )

See Also

In this article
Step IconExampleSee Also
Not finding the help you need?
Contact Support