Hello,
I'm not sure I fully understand you scenario but I assume you want to automatically enable the first option from the second
radio button group if the first option of the first
radio button group is enabled.
Unfortunately we don't have predefined support for this due to Windows Installer limitations.
However you can go in the “Dialogs” page and use a
Set property on button push
init event.
Unfortunately the event will take place after the dialog will be changed, not when the action took place.
So, you can select the first
radio button(e.g. RadioButton_1) from the first
RadioButtonGroup and in the
Init Events tab add a new event and from the new
appeared window you can select the
Set Installer Property value.
You can edit its property like that:
Property: field RADIOBUTTONGROUP_2_PROP
where RADIOBUTTONGROUP_2_PROP is the property assigned to the second radiobutton group
Argument: field RadioButton_1
Condition: field RADIOBUTTONGROUP_1_PROP = "RadioButton_1"
Add another init event for the second
radio button(e.g. RadioButton_2) from the first
RadioButtonGroup.
Please let us know if that helped.
Best regards,
Dan