WelcomeForumsCommunityWijwizard with clickable tabs or wijtab with next/back Buttons?

Wijmo Team Member
gent posted on July 18, 2012 at 9:38 am link

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
Georg

Wijmo Team Member
abdiasm posted on July 18, 2012 at 3:49 pm link

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
Abdias

Answer
Wijmo Team Member
gent posted on July 19, 2012 at 3:26 pm link

Thanks. Works perfect!

Answer
Wijmo Team Member
rlcraven posted on May 13, 2013 at 4:52 pm link

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!
Randy

Answer

This topic has 3 voices, contains 3 replies, and was last updated by  rlcraven 9 days ago.

You must be logged in to reply to this topic.