load
If contentUrl is set for the step, loads the Step content from remote.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [
{
title: "Dynamic Step",
contentUrl: "https://demos.telerik.com/kendo-ui/content/web/tabstrip/ajax/ajaxContent2.html"
},
{
title: "Second Step",
content: "<h1>Second Step Content</h1>"
}
]
});
var wizard = $("#wizard").data("kendoWizard");
var firstStep = wizard.steps()[0];
// Manually trigger loading of remote content
firstStep.load();
console.log("Step content loaded from remote URL");
</script>
In this article