contentLoad
Triggered when content is fetched from an AJAX request and has been loaded.
Event Data
e.sender kendo.ui.Wizard
The Wizard instance that triggered the event.
e.step kendo.wizard.Step
The Step instance that has been populated from remote.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
contentUrl: "https://demos.telerik.com/kendo-ui/content/web/tabstrip/ajax/ajaxContent1.html"
},{
title: "Second step"
}],
contentLoad: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(e.step.options.title + " has been loaded.");
}
});
</script>