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

table control

Former Member
0 Likes
602

How can i make group in radio button in table control ?

actually i want group in radio button like ok and cancel.

both used in table control

if ok is click than cancel is disable or viceversa.

1 ACCEPTED SOLUTION
Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
582

Hi

Take a table control, darg and drop two radiobuttons in the table control.

Give the name as OK and CANCEL.

Now press and hold control key and select both the radiobuttons and then just right-click --> Radiobutton group --> define

You will now have these two radoibuttons in a sinlge group and only one them can be selected.

Hope this solves your problem.

Thanks & Regards,

Tarun Gambhir

5 REPLIES 5
Read only

naveen_inuganti2
Active Contributor
0 Likes
582

Hi,

You want to arrange two Radio button in two defferent columns(like separate fields)?

Or,

One button for Cancel(when clicked) and Ok(when not selected)?

Or,

Outside of the table control and to effect the table control rows or column?

Get back here again with detailed technical view of your requirement.

Thanks,

Naveen.I

Read only

Former Member
0 Likes
582

Hi,

I think you must be talking about push buttons in table control.

group the push buttons in screen painter and use the following syntax for anabling/disabling.

LOOP AT SCREEN

IF group-name u201C gp1u2019.

screen-invisible = u20181u2019.

MODIFY screen.

ENDIF.

ENDLOOP.

Regards

Rajesh Kumar

Read only

Former Member
0 Likes
582

Hi,

select the radio buttons and goto Edit--> Grouping-> Radiobutton Group---> Define.

Edited by: Sathish Reddy on Jan 16, 2009 12:49 PM

Read only

Former Member
0 Likes
582

There are certain prerequisites to enable the radio button in the Table Control. Below are the steps that summarize them.

1. Create a struc with the field of CHAR 1.

2. Create a Table Control from the Structure using the Wizard.

3. Now, while creating Table Control, you need to mark the CHAR 01 field as CHECKBOX.

4. In the Screen Painter, select that CHECKBOX field and then right mouse click and then mark it as Radiobutton.

5. SAVE and ACTIVATE it.

To define group

go to screen painter layout, select the two radiobutton and then go to

Edit--> Grouping-> Radiobutton Group---> Define

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
583

Hi

Take a table control, darg and drop two radiobuttons in the table control.

Give the name as OK and CANCEL.

Now press and hold control key and select both the radiobuttons and then just right-click --> Radiobutton group --> define

You will now have these two radoibuttons in a sinlge group and only one them can be selected.

Hope this solves your problem.

Thanks & Regards,

Tarun Gambhir