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: components/stepper/events.md
+53-2Lines changed: 53 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,58 @@ position: 25
10
10
11
11
# Stepper Events
12
12
13
-
This article explains the events available in the Telerik Stepper for Blazor
13
+
This article explains the events available in the Telerik Stepper for Blazor:
14
+
15
+
*[OnChange](#onchange)
16
+
*[ValueChanged](#valuechanged)
17
+
18
+
## OnChange
19
+
20
+
The `OnChange` event fires before the current step has changed. The handler receives an object of type `StepperStepChangeEventArgs` which exposes the following fields:
21
+
22
+
*`TargetIndex` - provides the index of the targeted new step.
23
+
*`IsCancelled` - specifies whether the event is canceled and the built-in action is prevented.
24
+
25
+
>caption Handle the `OnChange` event of the first and second steps. The result from the snippet below.
0 commit comments