Examples of TourStep


Examples of de.agilecoders.wicket.extensions.markup.html.bootstrap.tour.TourStep

            + "    $(this).parents(\".alert\").alert(\"close\");\n"
            + "  });";
      }
    };
    tourBehavior
        .addStep(new TourStep()
            .title(Model.of("Step One Title"))
            .element(stepOne)
            .content(
                Model.of("Some longer help content <strong> for step <span style='color: red'>1</span>.")));
    tourBehavior
        .addStep(new TourStep()
            .title(new ResourceModel("tour.step.two"))
            .element(stepTwo)
            .placement(TooltipConfig.Placement.left)
            .content(
                Model.of("Some longer help content <strong> for step <span style='color: red'>2</span>."))
            .backdrop(true));
    tourBehavior
        .addStep(new TourStep()
            .title(Model.of("Step Three Title"))
            .element(stepThree)
            .placement(TooltipConfig.Placement.left)
            .content(
                Model.of("Some longer help content <strong> for step <span style='color: red'>3</span>.")));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.