Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
When re-creating a dynamic wizard in user control The active step is not reset to 0 with:
rw.WizardSteps.Clear()
How can I achieve a reset of the active step?
Marc
rw.WizardSteps.Clear();
for
(
int
i = 0; i < 3; i++)
{
RadWizardStep wizStep =
new
RadWizardStep();
wizStep.ID =
"step_"
+ i;
rw.WizardSteps.Add(wizStep);
}
rw.WizardSteps[0].Active =
true
;
Hi Veselin,
It works thank you