cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Thananjeyan_M
Level 6

Radio Button Click event in Basic MSI

Hi

I'm new to Installshield and my project type is basic MSI.

I have include Radio button Group (PROPERTY as "RADIO_BUTTON") with two Radio buttons (Value 1 and 0) in a dialog.If i click the PostPone config radio button then i need to disable the certificate combo box. how can i do it?


I have tried DOAction for click event of RadioGroupButton. The click event occurs only when i click the RadioGroupButton Square Area (Event not trigger in Post Pone Config Radio Button).

Please help me


Thanks,
Thananjeyan
Labels (1)
0 Kudos
(1) Reply
hidenori
Level 17

You basically need to add the disable/enable conditions to your certificate combo box as below:

[LIST=1]
  • Action: Disable, Condition: RADIO_BUTTON = "PostPone"
  • Action: Enable, Condition: RADIO_BUTTON <> "PostPone"
  • 0 Kudos