Forum
Calc Builder Support
Calc Builder supportForums
No se permite escribir sin estar logado. Por favor, login
Re: Show the second row of the table, depending on the condition 11.08.2014 09:16
Hello,
If you need some sections of your form hide/show according to user inputs, you must include some javascript code able to handle that. Please check 'Hide/show sections on user input' video at www.moonsoft.es/en/demo-calcbuilder-en.
Regards,
Moonsoft Team
www.moonsoft.es
If you need some sections of your form hide/show according to user inputs, you must include some javascript code able to handle that. Please check 'Hide/show sections on user input' video at www.moonsoft.es/en/demo-calcbuilder-en.
Regards,
Moonsoft Team
www.moonsoft.es
Re: Show the second row of the table, depending on the condition 23.08.2014 12:14
Hello,
Yes, but maybe you should change jQuery selector to get radio field value instead of option list.
Regards,
Moonsoft Team
www.moonsoft.es
Yes, but maybe you should change jQuery selector to get radio field value instead of option list.
Regards,
Moonsoft Team
www.moonsoft.es
Re: Show the second row of the table, depending on the condition 24.08.2014 10:09
I used this code:
CB(".dinstyle").hide();
CB("#intest").change(function(){
CB(".dinstyle").hide();
CB(".opt-"+CB("#intest").find(":selected").attr("mv_option")).show(500);
});
How should I modify it to work with radio button?
Thanks for your assistance.
CB(".dinstyle").hide();
CB("#intest").change(function(){
CB(".dinstyle").hide();
CB(".opt-"+CB("#intest").find(":selected").attr("mv_option")).show(500);
});
How should I modify it to work with radio button?
Thanks for your assistance.
Re: Show the second row of the table, depending on the condition 24.08.2014 11:36
Hello,
Javascript code depends on your fields, HTML, etc.. You could find how to select a radio button using jQuery (For example: http://api.jquery.com/checked-selector/ or http://www.mkyong.com/jquery/how-to-select-a-radio-button-with-jquery/) changing $ or jQuery alias with CB.
If you need more assistance in your specific javascript code, please place a ticket in helpdesk and we'll evaluate it.
Regards,
Moonsoft Team
www.moonsoft.es
Javascript code depends on your fields, HTML, etc.. You could find how to select a radio button using jQuery (For example: http://api.jquery.com/checked-selector/ or http://www.mkyong.com/jquery/how-to-select-a-radio-button-with-jquery/) changing $ or jQuery alias with CB.
If you need more assistance in your specific javascript code, please place a ticket in helpdesk and we'll evaluate it.
Regards,
Moonsoft Team
www.moonsoft.es