Completed
Last Updated: 26 Apr 2013 10:16 by Jesse Dyck
ADMIN
Created by: Boryana
Comments: 1
Category: Wizard
Type: Bug Report
8
The RadWizard control should handle the Tab key to navigate through all controls on its page and its command buttons.
Completed
Last Updated: 18 Mar 2013 06:42 by ADMIN
FIX. RadWizard - the hover and pressed styles for the focused button in the Windows7 theme are missing
Completed
Last Updated: 21 Jun 2018 13:59 by ADMIN
If you focus the first text box and press Tab key, the expected behavior is that the second text box is focused. However, pressing Tab key will navigate through the next/previous buttons. If you add a second control on the form along with the UserControl that hosts the wizard, the Tab key will behave as expected and you can navigate through the controls in the wizard page.
Completed
Last Updated: 07 Jun 2021 08:36 by ADMIN
Release R2 2021 SP1 (LIB 2021.2.607)

Create a .NET 5 project and add a RadWizard. You can't navigate the pages to place controls on any page other than page 1.

Workaround: in the Designer.cs InitializeComponents method you can set the Selected page and rebuild the project:

 this.radWizard1.SelectedPage = wizardPage1;

Unplanned
Last Updated: 16 Feb 2024 12:43 by ADMIN

To reproduce:

  • create a new project with Telerik RadForm, HighDPI
  • add material theme, activate the theme
  • add RadWizard, activate the theme
  • change the wizard to Aero mode

In the preview the PageTitle of the wizard page is visible. Run the project and the PageTitle isn't visible anymore. The color of the PageTitle background is also not correct. I think there is a problem with the resources.

Completed
Last Updated: 03 Apr 2020 11:08 by ADMIN
To reproduce:
- Add RadWizard to a form.
- Set the AcceptButton property like this: this.AcceptButton = this.radWizard1.NextButton;
- You will notice that nothing happens when the enter key is pressed. 

Workaround: 
- Use the following PreviewKeyDown event handler: 
void radWizard1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { if (e.KeyCode == Keys.Enter) { this.radWizard1.NextButton.PerformClick(); } }
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: Wizard
Type: Bug Report
0
The layout of RadWizard CommandArea is incorrect after minimizing and restoring the form containing the control.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: Wizard
Type: Bug Report
0
The layout of the control's CommandArea is not correct when RadWizard is use in a MDI child form.
Completed
Last Updated: 25 Mar 2014 09:03 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: Wizard
Type: Bug Report
0
To reproduce:
Add a RadWizard to a form, add a coded ui project, add a test, try to access the buttons.
Unplanned
Last Updated: 11 Jul 2016 08:41 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Wizard
Type: Bug Report
0
To reproduce:

1. Add a RadWizard to an empty form
2. Add the Windows 8 Theme
3. Change the RadWizard component to Aero
4. Apply the Windows 8 Theme to the wizard control.
5. Run the project.

Workaround:  this.radWizard1.WelcomeImageElement.Margin = new Padding(0, 0, 0, -5);
Completed
Last Updated: 18 Jul 2016 13:39 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Wizard
Type: Bug Report
0
Steps to reproduce:

1.Create new WinForms project.
2.Place a RadWizard on Form1.
3.Select the WelcomePage and assign a WelcomeImage
4.Save the changes and close Form1.
5.Reopen Form1, you get an exception, see attached screen shot