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"))
)
Activate(System.Func)
Fires when a new Step has been selected upon user interaction.
For more information see Activate event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@( Html.Kendo().Stepper()
.Name("stepper")
.Events(events => events.Activate(
@<text>
function(e) {
//event handling code
}
</text>
))
)
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"))
)
Select(System.Func)
Fires when the user clicks on a Step to select it.
For more information see Select event.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@( Html.Kendo().Stepper()
.Name("stepper")
.Events(events => events.Select(
@<text>
function(e) {
//event handling code
}
</text>
))
)