如何使用 API 更改查询步骤中的设置?如果我处于表单的编辑模式,我正在尝试启用所有步骤。我尝试使用:
var wizard = $("#wizard").steps();
wizard.steps({
enableAllSteps: true
});
显然这是不正确的。
如何使用 API 更改查询步骤中的设置?如果我处于表单的编辑模式,我正在尝试启用所有步骤。我尝试使用:
var wizard = $("#wizard").steps();
wizard.steps({
enableAllSteps: true
});
显然这是不正确的。
很确定你只需要这样做:
$("#wizard").steps({
enableAllSteps: true
});
我有同样的问题,我找到了一个分区,你可以破坏并重新构建
function updateWizard() {
if (started == "NotStarted") {
stepsWizard = stepsWizard.steps("destroy");
stepsWizard = $("#wizard").steps({
enablePagination: false
});
}
else {
stepsWizard.step("destroy");
stepsWizard = $("#wizard").steps({
enablePagination: true
});
}
}