wijmo.wizard Namespace > wijwizard type : add Method |
Javascript (Usage) | |
---|---|
$(function () { var returnsValue; // Type: wijwizard // Parameters var index; // Type: number var title; // Type: string var desc; // Type: string returnsValue = $(".selector").wijwizard("add", index, title, desc); }); |
Javascript (Specification) | |
---|---|
function add( index : number, title : string, desc : string ) : wijwizard; |
// Add a new panel to be the second step. // It's title is "New Panel", description is "New Panel Description". $("#wizard").wijwizard("add", 1, "New Panel", "New Panel Description");