Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Normally the Wizardstep is only validating when stepping forward.
When I use the OnActiveStepChanged event the Wizard validates also validates on stepping backwards.
Can this be prevented? Is this a bug or by design?
Marc
Hello Marc,
The back button is triggering the postback but the validators are preventing the change on the server-side.
To overcome this, you can set the ActiveStepIndex manually in the PreviousButtonClick server-side event:
protected void RadWizard1_PreviousButtonClick(object sender, WizardEventArgs e) { if (e.CurrentStepIndex == e.NextStepIndex ) { RadWizard1.ActiveStepIndex = e.CurrentStepIndex-1; } }
Regards, Peter Milchev Progress Telerik
Hi Peter,
Thanks this does the trick.
For what it's worth, this also goes for the NavigationBarButtonClick event.