WebForms Stepper Overview
RadStepper is an intuitive UI component that visualizes progress by displaying a sequence of logical steps. The RadStepper could also be used for navigational purposes.
RadStepper is available as of R2 2022 and it is a server-side WebForms wrapper over the Kendo UI Stepper for jQuery widget.
The is part of Telerik UI for ASP.NET AJAX, a
professional grade UI library with 120+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
Key Features
- Built-in Section 508 and WCAG 2.1 АА accessibility, WAI-ARIA and RTL support
- Built-in Icons
- Customizable appearance
- Operation Modes
- Support for Client IconTemplate
- Flexible client-side API
- Visual Appeal - shipped with a rich set of skins for easy and consistent styling
Add a RadStepper Control
To add a RadStepper similar to the one shown above follow the steps:
Add a ScriptManager control on a Web Form.
Use the <telerik:RadStepper> tag to declare the Stepper.
Use the <Steps> inner tag to declare each StepperStep and set its properties.
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<telerik:RadStepper runat="server" ID="RadStepper1" Skin="Silk" RenderMode="Lightweight" >
<Steps>
<telerik:StepperStep Label="Personal Info" Icon="user" />
<telerik:StepperStep Label="Education" Error="true" Icon="dictionary-add" />
<telerik:StepperStep Label="Experience" Icon="flip-vertical" />
<telerik:StepperStep Label="Attachments" Icon="attachment" />
<telerik:StepperStep Label="Review" Icon="preview" Enabled="false" />
<telerik:StepperStep Label="Submit" Icon="file-add" />
</Steps>
</telerik:RadStepper>
Skins
The RadStepper control can be styled by setting a desired built-in skin:
Find more information about using skins in the Controlling Visual Appearance section.
Go ahead with the Getting Started article to learn more about Stepper Control. Also, you can check out the RadStepper online demos to see it in action.