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

StepperEventBuilder

Methods

Activate(System.String)

Fires when a new Step has been selected upon user interaction.

For more information see Activate event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the activate event.

Example


            @(Html.Kendo().Stepper()
                        .Name("stepper")
                        .Events(events => events.Activate("handler"))
            )

Select(System.String)

Fires when the user clicks on a Step to select it.

For more information see Select event.

Parameters

handler - System.String

The name of the JavaScript function that will handle the select event.

Example


            @(Html.Kendo().Stepper()
                        .Name("stepper")
                        .Events(events => events.Select("handler"))
            )

In this article
Not finding the help you need?