New to Telerik UI for ASP.NET AJAXStart 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:

  1. The RadWizard that contains the active step. This argument is of type object, but can be cast to the RadWizard type.

  2. 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;
}
Not finding the help you need?
Contact Support