This is a migrated thread and some comments may be shown as answers.

Custom steps in Wizard for ASP.NET Core

1 Answer 193 Views
Wizard
This is a migrated thread and some comments may be shown as answers.
Sotiris
Top achievements
Rank 1
Veteran
Iron
Sotiris asked on 02 Dec 2020, 05:02 PM

Hello,

Could we customize the wizard functionality?

For example:

 1) disable the change of the content within the Circle of the Step,

 2) use a custom icon/img instead of Check Icon which is currently displayed? 

1 Answer, 1 is accepted

Sort by
0
Neli
Telerik team
answered on 07 Dec 2020, 10:46 AM

Hi Sotiris,

Could you please elaborate a little bit more about the requirements and the desired result as I am not sure I understand the issue correctly.

Do you need to disable fields in the step of the wizard or you need for example to cancel a change? If for example, you need to disable the step commands, you could do it as follows:

var wizard = $("#wizard").data("kendoWizard");
wizard.activeStep().buttons()[0].enable(true);
wizard.enableStep(1, true);

Here is a Dojo example where this is demonstrated. 

You could use the .Content(), ContentId or ContentUrl to customize each step content. You could find such examples in the Demos linked below:

- https://demos.telerik.com/aspnet-core/wizard/content-position

- https://demos.telerik.com/aspnet-core/wizard/ajax

I will appreciate any detail about your custom scenario that would be helpful to better understand the case. I hope the provided information will be helpful.

Regards,
Neli
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Tags
Wizard
Asked by
Sotiris
Top achievements
Rank 1
Veteran
Iron
Answers by
Neli
Telerik team
Share this question
or