onAfterStart

fires after the first hint step is shown

void onAfterStart();

Example

webix.ui({
    view: "hint",
    id: "hint",
    on: {
        onAfterStart: function() {
            webix.message("Good luck!");
        }
    },
    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"
        }
    ]
});

See also
Back to top