Hi,
I have a report with 3 parameters:
1. Select List
2,3 Radio Lists Connected with Parameter1 like below:
select id,
name,
'',
if(isdefault,'selected','')
from table
where mydbr_param1=0
union
select id,
name,
'',
if(isdefault2,'selected','')
from table
where mydbr_param1>0
This works ok but if I select for the 3rd parameter the option "Show the label and the parameter in the same row as the previous one",
then when I change parameter1 from the select list the 2 Radio Boxes change their value as expected,
but both the labels of both Radio Boxes are disappeared.