unable to hide previous and next button...
sandy15d opened this issue · 1 comments
sandy15d commented
$('#smartwizard').smartWizard({
selected: 0,
theme: 'default',
autoAdjustHeight:true,
transition: {
animation: 'slide-horizontal', // Effect on navigation, none/fade/slide-horizontal/slide-vertical/slide-swing
},
toolbarSettings: {
toolbarPosition: 'none',
}
});
techlab commented
Please try the options showNextButton
and showPreviousButton
$('#smartwizard').smartWizard({
toolbar: {
showNextButton: false, // show/hide a Next button
showPreviousButton: false // show/hide a Previous button
}
});