Currently, to set a field's label and text the Wizard's Label() and Title() options must be used:
items
.Add()
.Field(p => p.DropdownId)
.Label(l => l.Text("Dropdown"))
.Title("Dropdown")
It would be helpful if the Wizard can be configured to get these from the data annotation attributes in the model:
[Display(Name = "Dropdown")]
public int DropdownId{ get; set; }
The Wizard's stepper does not allow manual navigation when the select() method is used on the last step.
Done
button.The Wizard's stepper does not allow manual navigation when the .select() method is used on the last step and navigates back to the first index of the Stepper.
The Wizard's stepper should allow manual navigation when the .select() method is used on the last step and navigates back to the first index of the Stepper.
Is it possible to implement an option to change the position of the Wizard ActionBar (Buttons and Pager elements)?
For example:
Currently, when a Telerik UI Form is nested inside a Telerik UI Wizard, the user should click twice on the Submit button after they have changed a field.
Steps to replicate:
1. Nest a form inside a Wizard.
2. Change a field in the form.
3. Click on the submit button.
4. The form is not submitted as the blur validation consumes the click. The user has to click the button submit again.
Short video demonstration:
<kendo-wizard name="wizard" on-done="onDone">
<wizard-steps>
<wizard-step title="Start">
<wizard-step-buttons>
<wizard-step-button name="next" text="Next"></wizard-step-button>
</wizard-step-buttons>
<wizard-step-content>
</wizard-step-content>
</wizard-step>
<wizard-step title="User details">
<wizard-step-buttons>
<wizard-step-button name="previous" text="Previous"></wizard-step-button>
<wizard-step-button name="done" text="Register"></wizard-step-button>
</wizard-step-buttons>
<wizard-step-content>
</wizard-step-content>
</wizard-step>
</wizard-steps>
</kendo-wizard>
js exception on using the Wizard tag helper in an editor template
no js exceptions on using the tag helper in an editor template