resume

resumes showing Hint from the specified step

void resume( [number stepNumber] );
stepNumbernumber(optional) the number of the step

Example

webix.ui({
    view: "hint",
    id: "hint",
    on: {
        onEnd: function(step) {
            $$("hint").resume(); // resume from the first step
        }
    },
    steps:[
        {
            el: ".div1",
            title: "Welcome to Booking App!",
            text: "Click here to check out regular flights",
            event:"click"
        },
        {
            el: ".div2",
            title: "Get Flights Info in a Click!",
            text: "Click here to take a look at all flights info",
            event:"click"
        }    
    ]
});

Details

If the method is called without a parameter, the show resumes from the first step.

See also
  • Articles
  • Back to top