Application Development and Automation 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: 
Read only

radio group disable

Former Member
0 Likes
520

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
Read only

former_member195698
Active Contributor
0 Likes
485

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

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

3 REPLIES 3
Read only

Former Member
0 Likes
485

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...

Read only

0 Likes
485

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

Read only

former_member195698
Active Contributor
0 Likes
486

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