Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

radio group disable

Former Member
0 Kudos

Hi,

I have a req like if a check box for a parameter is ON, then 2 radio button groups should disable/inactive.

only one among check box / Radio groups should be active.

How to acheive this?

PRa

1 ACCEPTED SOLUTION

former_member195698
Active Contributor
0 Kudos

have you associated a user Command to the checkbox.

You can assign a user command to a checkbox parameter using the USER-COMMAND ucomm addition

Then the Event will be triggered and in the Event AT SELECTION-SCREEN OUTPUT, based on the USer command and the value of the Checkbox you can Enable or Disable the radio buttons.

Reward points if useful.

Regards,

Abhishek

3 REPLIES 3

Former Member
0 Kudos

assign a modif id to each radio button group...

AT SELECTION-SCREEN OUTPUT event.. loop at screen

MOVE 0 TO screen-input.

MOVE 0 TO screen-active.

this will disable and hide the radio buttons...

0 Kudos

I need to do this on the selection-screen.

Once I check the BOX then they should deactivate.

I tried the same in AT SELECTION-SCREEN.

it is not working.

PRA

former_member195698
Active Contributor
0 Kudos

have you associated a user Command to the checkbox.

You can assign a user command to a checkbox parameter using the USER-COMMAND ucomm addition

Then the Event will be triggered and in the Event AT SELECTION-SCREEN OUTPUT, based on the USer command and the value of the Checkbox you can Enable or Disable the radio buttons.

Reward points if useful.

Regards,

Abhishek