New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
WizardStepCreated
The server-side OnWizardStepCreated event occurs when a RadWizardStep object is created.
The OnWizardStepCreated event handler receives two arguments:
-
The RadWizard that contains the active step. This argument is of type object, but can be cast to the RadWizard type.
-
A WizardStepCreatedEventArgs object. This object has a property RadWizardStep that you can use to access the wizard step that was created.
Use the OnPreviousButtonClick event handler to respond when a RadWizardStep object is created.
C#
protected void RadWizard1_WizardStepCreated(object sender, WizardStepCreatedEventArgs e)
{
e.RadWizardStep.ToolTip = e.RadWizardStep.Title;
}