问题标签 [smart-wizard]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
204 浏览

javascript - 使左列根据选择移动?

我在以下 URI 中遇到了一个 jQuery Wizard 插件:

http://www.techlaboratory.net/labs/SmartWizard/wizard-vertical.htm

虽然它符合我的目的,但我正在努力实现一件小事。如果我添加超过 5 个步骤,显然并非所有步骤都可见。相反,当单击下一步时,我试图将所选步骤居中。例如,如果我单击第 2 步,左侧显示第 2 步的框应该居中。有人可以建议一个好方法吗?

0 投票
1 回答
2684 浏览

jquery - Issues with SmartWizard - jQuery

I am using a smart wizard plugin in my web page (version 0.98).
Here is my web page:

I have two issues:
1) Each of the "tabs" on the wizard has a different content height. Therefore, I want the wizard to be resized height-wize when a new tab is selected. I assigned each tab div with a height attribute (I called it wizard-height), and created a JS function that resizes the entire wizard div when a new tab is selected. The problem is that the height seems to vary between browsers and resolutions, so even though it works perfectly on my Mac in Chrome, the the height doesn't get set properly on a PC (the content gets cut).
2) I am also using the select to UI slider plugin for jQuery for my sliders. Unfortunately, as of tab number 2 in my wizard, the labels under the slider are not centered any more, but aligned to the right - this only happens as of the second wizard tab, no matter the content.

Thanks!

0 投票
6 回答
11289 浏览

jquery - jQuery - 智能向导。如何覆盖“上一个”按钮验证?

基本上,我需要在单击“下一步”按钮时验证数据,但是如果用户想要返回,我不想验证他们是否已经为当前步骤引入了必填字段

0 投票
1 回答
270 浏览

jquery - jQuery ajax:加载 html + 应用插件,ie7

我有一个页面的一部分,我想使用 ajax 加载。内容是该向导的 html:http: //techlaboratory.net/labs/SmartWizard2/index.htm

我目前在做什么:

如果我只使用 $('#wizard').smartWizard() 并将所有内容保持在同一页面上,该脚本就可以正常工作。但是当我用ajax加载时它不起作用。谁能告诉我区别?任何想法如何解决?谢谢

0 投票
1 回答
1725 浏览

jquery - Jquery Smart Wizard 冻结

我正在使用 IE 8 和 jquery 智能向导 3.2.0 版。我注意到当将智能向导包含在附加<div>标记中时(目的是在 jquery 对话框弹出窗口中显示向导),当为 onLeaveStep 事件指定函数时,向导不会推进步骤。

现在是代码:

javascript设置向导:

与向导事件相关的简单函数:

以及 HTML 标记(<p>为简洁起见,我删除了标签中的步骤内容 - 这导致它缺少功能,就好像其中有内容一样,因此可以排除)

有没有人有类似的结果?<div>或者解释为什么向导在嵌套在其他标签中时不起作用?

0 投票
3 回答
7738 浏览

jquery - 在 SmartWizard 中后退时跳过验证

我正在使用 SmartWizard 2.0(链接),当用户点击“上一个”按钮或以任何方式在表单中向后移动时,我需要停止验证。

目前我正在使用

我知道我可以使用

找到 currentStep,但我需要知道用户导航的方式 - 所以我需要知道“nextStep”。不知道这是否可能。

0 投票
3 回答
1586 浏览

css - CSS浮动问题被推到新行

请参阅下面的我的 jsfiddle 示例。

谁能弄清楚我在这里做错了什么?

我正在尝试使用名为 Smart Wizard 的第三方插件,除了 jsfiddle 中显示的这一方面外,它都可以正常工作。

[X] 在新行上,它应该直接在错误消息的右侧。

http://jsfiddle.net/jamesjw007/4wJv4/1/

0 投票
1 回答
448 浏览

jquery - 为 smartwizard 2.0 动态添加子菜单

嗨,我正在使用 smartwizard 2.0 插件,我想知道是否有人可以帮助我。

基本上,当用户单击某个按钮时,我试图动态添加一个菜单。我已经给出了下面的代码。

我面临的问题是添加的菜单无法根据功能工作。

任何帮助是极大的赞赏。

您可以在此网站http://techlaboratory.net/products.php?product=smartwizard&action=2中找到 smartwizard 2.0

0 投票
2 回答
2432 浏览

jquery - JQuery SmartWizard:动态 ajax 内容

我正在使用JQuery SmartWizard,它能够使用 Ajax 加载内容,但我看不到如何将任何参数传递给服务器。我错过了什么吗?

似乎拥有 Ajax 的目的是向服务器发送参数,并根据输入参数返回不同的内容,对吧?我只看到一个 step_number 参数,但我不知道如何或是否可以更改它,因为步骤数是静态的。谢谢。

0 投票
3 回答
7162 浏览

javascript - 重置 jquery smartwizard

我正在使用jquery smartwizard 当用户单击名为“create”的按钮时,我的向导会在对话框中打开。当用户再次单击该按钮时,我希望向导重置并启动一个新的向导,但它会保留其状态。如果我重新初始化它,那么它会再次添加下一个、上一个和完成按钮并弄乱整个向导 UI。有什么想法可以重置智能向导吗?