bootstrap-application-wizard
bootstrap-application-wizard copied to clipboard
Auto show not working correctly
When options is set to open automatically (open: true), then wizard is openned in modal but no card initialized. Is needed to set some class or attribute to define first card, or?
@snipiba as a work around to show the wizard when the page loads, you may use the function wizard.show(); after the wizard is initialized, from the demo an example is
var wizard = $('#satellite-wizard').wizard({
keyboard : false,
contentHeight : 400,
contentWidth : 700,
backdrop: 'static'
});
wizard.show();