2006 Oct 16 5:14 AM
Hi,
In a Table control i need to include one column for Checkbox. I see many examples were they the selection bar Checkbox(its implicit). I want to have separate Column for explicit Checkbox.
Could anyone pls help me with an example?
Pls help
Thanks
Ram
2006 Oct 16 5:17 AM
Directly place a check box control layout of the table control.
Regards
- Gopi
2006 Oct 16 5:22 AM
Hi Gopi,
Thanks for the reply.
Then how to get the Check Box events in PAI?
Can you pls help me with example
thanks
Ram
2006 Oct 16 5:42 AM
define a structure with the table control columns
begin of itab occurs 0,
chk type c,
.....tc columns
end of itab.
now in PAI, u ll have to capture the screen fields value to itab
and in PBO
move the itab values to the screen fields.
Regards
- Gopi
2006 Oct 16 6:05 AM
Hi,
So the Screen fields Will have the values from Table control..including for Check box(Selected or not) ?
Thanks
Ram
2006 Oct 16 6:15 AM
Yes u will have to include the check box also in the table control field columns
Regards
- Gopi