Skip to content

Commit

Permalink
Add RadWizard Cancel Next Step Navigation article
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanDanchev committed Jun 30, 2016
1 parent 551a4d5 commit 4c699e2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions controls/wizard/how-to/cancel-next-step-navigation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: Cancel Next Step Navigation
page_title: Cancel Next Step Navigation | RadWizard for ASP.NET AJAX Documentation
description: Cancel Next Step Navigation
slug: wizard/how-to/cancel-next-step-navigation
tags: cancel,next,step,navigation
published: True
position: 0
---

# Cancel Next Step Navigation



The navigation to the next WizardStep can be cancelled server-side by setting the current step as active in the **RadWizard**'s NextButtonClick event handler:

````C#
protected void RadWizard1_NextButtonClick(object sender, Telerik.Web.UI.WizardEventArgs e)
{
if (false)
{
e.CurrentStep.Active = true;
}
}
````

0 comments on commit 4c699e2

Please sign in to comment.