‎2009 Jan 16 7:10 AM
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.
‎2009 Jan 16 7:21 AM
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
‎2009 Jan 16 7:17 AM
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
‎2009 Jan 16 7:17 AM
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
‎2009 Jan 16 7:18 AM
Hi,
select the radio buttons and goto Edit--> Grouping-> Radiobutton Group---> Define.
Edited by: Sathish Reddy on Jan 16, 2009 12:49 PM
‎2009 Jan 16 7:18 AM
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
‎2009 Jan 16 7:21 AM
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