Is it possible to disable the entire TelerikWizard stepper?

1 Answer 419 Views
Wizard
Stefan
Top achievements
Rank 1
Iron
Stefan asked on 20 Oct 2021, 01:42 PM | edited on 20 Oct 2021, 01:44 PM
The title is self explanatory. We don't require a stepper. Our wizard could also potentially consist of up to 10 steps, which would make the stepper too chaotic. Is it possible to disable and/or hide the entire stepper somehow? Thanks in advance!
Marin Bratanov
Telerik team
commented on 23 Oct 2021, 09:59 AM

The typical way to hide something is to wrap it in an @if(condition) {  <Component> } block so it renders only when you want it to. You can also disable each individual step as well, but I am not sure how good a UX that would provide.

1 Answer, 1 is accepted

Sort by
0
Blazorist
Top achievements
Rank 2
Bronze
Iron
Iron
answered on 31 May 2022, 05:42 PM
It's been a while but maybe it will help someone looking in this forum.

     /* override telerik styles to hide the stepper and the pager (legend "Step X of Y")*/

     .k-wizard-pager {
         display: none !important;
     }

     .k-stepper {
         display: none !important;
     }

Bye.
Tags
Wizard
Asked by
Stefan
Top achievements
Rank 1
Iron
Answers by
Blazorist
Top achievements
Rank 2
Bronze
Iron
Iron
Share this question
or