我在应用程序的表单中包含了smartwizard,并且在插入期间它运行良好。 但是,在更新期间,我想显示所有访问过的步骤,以便用户可以直接访问他/她想要的选项卡,而不是单击下一个按钮。 我怎样才能做到这一点? 我知道我可能不得不在主js文件中的 _setEvents 函数中进行更改,即jquery.smartWizard.min.js,但我似乎无法弄清楚..
答案 0 :(得分:4)
在anchorSettings中找到答案。 您可以添加anchorSettings参数并更改值,如下所示,
spring-dispatcher-servlet.xml
答案 1 :(得分:0)
尝试将enableAllSteps设置为true:
ClientSocket
答案 2 :(得分:0)
$('#smartwizard').smartWizard({
selected: 0,
theme: 'default',
transitionEffect: 'fade',
showStepURLhash: false,
anchorSettings: {
anchorClickable: true, // Enable/Disable anchor navigation
enableAllAnchors: true, // Activates all anchors clickable all times
markDoneStep: true, // add done css
enableAnchorOnDoneStep: true // Enable/Disable the done steps navigation
},
lang: { next: 'Next', previous: 'Previous' }
});