How to add the extra buttons in jquery smart wizard
Tried Code :
I have added the toolbar section code.. Still its not working. Can someone help me on this?
$('#wizard').smartWizard({
transitionEffect: 'slide',
keyNavigation: false,
onLeaveStep:leaveAStepCallback,
onShowStep:showAStepCallBack,
labelNext:'Save',
labelPrevious:'Back',
labelFinish:'Finish',
enableFinishButton: true,
selected: 0,
// step bar options
toolbarSettings: {
toolbarPosition: 'bottom', // none, top, bottom, both
toolbarButtonPosition: 'left', // left, right
showNextButton: false, // show/hide a Next button
showPreviousButton: true, // show/hide a Previous button
toolbarExtraButtons: ['NextBtn']
},
});
Expected Output
I'm trying to add one more button near to "Next" button.