| Wijmo Team Member | gent posted on July 18, 2012 at 9:38 am Hi, I basically wand to use the wizard, but I need to enable the tabs for clicking to navigate faster. I don’t know how to do that. I could use witabs, but then I need the next and back Buttons. Kind Regards | |
| Wijmo Team Member | abdiasm posted on July 18, 2012 at 3:49 pm You can use the following jQuery to capture the click on the headers and change the Step accordingly : $(document).ready(function () {
$(“#wizard”).wijwizard();
$(“li.ui-widget-header”).each(function (index, elem) {
$(elem).click(function (args) {
var stepIndex = $(“li.ui-widget-header”).index(elem);
$(“#wizard”).wijwizard(‘show’, stepIndex);
});
});
});Regards | Answer |
| Wijmo Team Member | Answer | |
| Wijmo Team Member | rlcraven posted on May 13, 2013 at 4:52 pm Hello, As follow up to this question, is it possible to allow the user to click the headers for panels that have been previously visited, but not for other panels? For example, when a panel is shown for he first time, that header would become clickable. Thanks! | Answer |
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.