reloadOnSelect Boolean
(default: "false")
Indicates whether the step content will be reloaded on each navigation to given step. Applicable when the step configuration has "contentUrl" set.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
loadOnDemand: true,
reloadOnSelect: true,
steps: [{
title: "Initial step",
contentUrl: "https://demos.telerik.com/kendo-ui/content/web/tabstrip/ajax/ajaxContent1.html"
}, "Second step"]
});
</script>