Skip to content

Commit e529eed

Browse files
committed
docs(stepper): rename client-side properties
1 parent 4f3b2c4 commit e529eed

File tree

1 file changed

+5
-5
lines changed
  • controls/stepper/client-side-programming

1 file changed

+5
-5
lines changed

controls/stepper/client-side-programming/events.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Events
33
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
55
slug: stepper/client-side-programming/events
66
tags: events
77
published: True
@@ -29,9 +29,9 @@ The exceptions are the OnInitialize and OnLoad events that are specific to the M
2929

3030
* **OnLoad** — Fired when RadStepper is initialized and loaded on the page.
3131

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)
3333

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.
3535

3636

3737
## Examples
@@ -55,7 +55,7 @@ The exceptions are the OnInitialize and OnLoad events that are specific to the M
5555
5656
````ASP.NET
5757
<script>
58-
function onActivate(sender, args) {
58+
function onStepSelecting(sender, args) {
5959
//kendo object of the activated step
6060
var step = args.get_step()
6161
//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
7070
}
7171
</script>
7272
<telerik:RadStepper runat="server" ID="RadStepper1">
73-
<ClientEvents OnActivate="onActivate" />
73+
<ClientEvents OnStepSelecting="onStepSelecting" />
7474
<Steps>
7575
<telerik:StepperStep Label ="Step 1"/>
7676
<telerik:StepperStep Label ="Step 2"/>

0 commit comments

Comments
 (0)