You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: controls/stepper/client-side-programming/events.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Events
3
3
page_title: Client-side Events - RadStepper
4
-
description: Check our the client-side events of RadStepper - OnInitialize, OnLoad, OnSelect, OnActivate
4
+
description: Check our the client-side events of RadStepper - OnInitialize, OnLoad, OnStepSelected, OnStepSelecting
5
5
slug: stepper/client-side-programming/events
6
6
tags: events
7
7
published: True
@@ -29,9 +29,9 @@ The exceptions are the OnInitialize and OnLoad events that are specific to the M
29
29
30
30
***OnLoad** — Fired when RadStepper is initialized and loaded on the page.
31
31
32
-
*[OnSelect](https://docs.telerik.com/kendo-ui/api/javascript/ui/stepper/events/select) — Fires when the user clicks on a Step to select it. (Cancelable event)
32
+
*[OnStepSelected](https://docs.telerik.com/kendo-ui/api/javascript/ui/stepper/events/select) — Fires when the user clicks on a Step to select it. (Cancelable event)
33
33
34
-
*[OnActivate](https://docs.telerik.com/kendo-ui/api/javascript/ui/stepper/events/activate) — Fires when a new Step has been selected upon user interaction.
34
+
*[OnStepSelecting](https://docs.telerik.com/kendo-ui/api/javascript/ui/stepper/events/activate) — Fires when a new Step has been selected upon user interaction.
35
35
36
36
37
37
## Examples
@@ -55,7 +55,7 @@ The exceptions are the OnInitialize and OnLoad events that are specific to the M
55
55
56
56
````ASP.NET
57
57
<script>
58
-
function onActivate(sender, args) {
58
+
function onStepSelecting(sender, args) {
59
59
//kendo object of the activated step
60
60
var step = args.get_step()
61
61
//client side object of the step properties
@@ -70,7 +70,7 @@ The exceptions are the OnInitialize and OnLoad events that are specific to the M
0 commit comments