Completed
Last Updated: 31 Mar 2025 11:09 by ADMIN
Release 2025 Q2 (May)
Created by: Christian
Comments: 0
Category: Wizard
Type: Feature Request
0

Enhancement

Expose setOptions() for Kendo Wizard

Desired Behavior
setOptions shall update Wizard steps

    wizard.setOptions({
      steps: steps
    });
Workaround

Destroy current Wizard and reinitialize with new steps

    let wizard = $("#wizard").data('kendoWizard');
    wizard.destroy();
    $("#wizard").empty();
    
    let steps = [];
    for	(var i = 0; i < 4; i++) {
      steps.push({
        title: "Tab " + i,
		content: "Tab Content " + i 
      });
    }
    
    $("#wizard").kendoWizard({
        steps: steps
    });

Dojo: https://dojo.telerik.com/zpjBsSkN

Unplanned
Last Updated: 10 Mar 2021 16:45 by ADMIN
Created by: Tharsis-it
Comments: 0
Category: Wizard
Type: Feature Request
1
If the Wizard has too many steps, they start overlapping. Consider implementing a way of indicating there are more steps, without displaying the steps. For example, the Pager adds an ellipsis in the middle, instead of displaying dozens of page numbers.