How to dynamically display options in a smart wizard step based on the selection in the previous step?
up vote
0
down vote
favorite
I am using the SmartWizard plugin (http://techlaboratory.net/smartwizard) in my Django application.
I have 4 steps (0,1,2,3) in the smartwizard.
Step-1 has radio buttons and I want to display the options in Step-2 based on the selection in Step-1.
I will not be able to paste the full HTML I use.
Below is part of the HTML .
The below code displays the options fine in Step-2, however, they are also being displayed in the next steps as well as previous steps.
How to fix this ?
$("#smartwizard").on("showStep", function(e, anchorObject, stepNumber, stepDirection, stepPosition) {
if(stepNumber === 2){
var tc_opts = `
<select id="a" name="a">
<option value="b">b</option>
<option value="c">c</option>
</select>
`;
$('#step-2-options').after(tc_opts);
javascript html smart-wizard
add a comment |
up vote
0
down vote
favorite
I am using the SmartWizard plugin (http://techlaboratory.net/smartwizard) in my Django application.
I have 4 steps (0,1,2,3) in the smartwizard.
Step-1 has radio buttons and I want to display the options in Step-2 based on the selection in Step-1.
I will not be able to paste the full HTML I use.
Below is part of the HTML .
The below code displays the options fine in Step-2, however, they are also being displayed in the next steps as well as previous steps.
How to fix this ?
$("#smartwizard").on("showStep", function(e, anchorObject, stepNumber, stepDirection, stepPosition) {
if(stepNumber === 2){
var tc_opts = `
<select id="a" name="a">
<option value="b">b</option>
<option value="c">c</option>
</select>
`;
$('#step-2-options').after(tc_opts);
javascript html smart-wizard
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using the SmartWizard plugin (http://techlaboratory.net/smartwizard) in my Django application.
I have 4 steps (0,1,2,3) in the smartwizard.
Step-1 has radio buttons and I want to display the options in Step-2 based on the selection in Step-1.
I will not be able to paste the full HTML I use.
Below is part of the HTML .
The below code displays the options fine in Step-2, however, they are also being displayed in the next steps as well as previous steps.
How to fix this ?
$("#smartwizard").on("showStep", function(e, anchorObject, stepNumber, stepDirection, stepPosition) {
if(stepNumber === 2){
var tc_opts = `
<select id="a" name="a">
<option value="b">b</option>
<option value="c">c</option>
</select>
`;
$('#step-2-options').after(tc_opts);
javascript html smart-wizard
I am using the SmartWizard plugin (http://techlaboratory.net/smartwizard) in my Django application.
I have 4 steps (0,1,2,3) in the smartwizard.
Step-1 has radio buttons and I want to display the options in Step-2 based on the selection in Step-1.
I will not be able to paste the full HTML I use.
Below is part of the HTML .
The below code displays the options fine in Step-2, however, they are also being displayed in the next steps as well as previous steps.
How to fix this ?
$("#smartwizard").on("showStep", function(e, anchorObject, stepNumber, stepDirection, stepPosition) {
if(stepNumber === 2){
var tc_opts = `
<select id="a" name="a">
<option value="b">b</option>
<option value="c">c</option>
</select>
`;
$('#step-2-options').after(tc_opts);
javascript html smart-wizard
javascript html smart-wizard
asked Nov 9 at 5:14
Tejaswi
1898
1898
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53220226%2fhow-to-dynamically-display-options-in-a-smart-wizard-step-based-on-the-selection%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown