Creating a Plain Wizard

To create a customized plain wizard, copy the Table Plain wizard and paste it with a new name in the wizards directory. You can then extend the code.

Example 4: Plain Wizard

var sample_plain = function() {
    "use strict";
    return {
        Wizard: {
            view: function(vnode) {
                return m("div", "Basic Wizard");
            }
        }
    };
}();