Hi,
the integration id mded with BF FORM 'Apoio à Renda - Formulário de Candidatura (AR001) '
and in the wanted radio element you can in action script in the advanced of the element add this code
function ff_a_action(element, action)
{
switch (action) {
case 'change':
vals = '';
opts = JQuery("[name=\"ff_nm_a[]\"]");
for (o = 0; o < opts.length; o++)
if (opts[o].checked)
{
vals = opts[o].value;
if (vals==2) // here you can add further dependencies
{
ff_getElementByName('b').value=2;
}else{
ff_getElementByName('b').value='';
}
}
break;
default:;
} // switch
} // ff_a_action
opts = JQuery("[name=\"ff_nm_a[]\"]"); instead 'a' add the name of the radio element
ff_getElementByName('b').value=2; instead 'b' add the name of the element on which radio element have affect
then in the CB the code should be work
let me know!
Regards,
Mirko