‎2009 Dec 30 11:03 AM
Hi,
In the screen, there is a table control and below the tablecontrol there is a tabstrip with 5 tabs.
Now after clicking a checkbox in table control i am showing some related info of the clicked row in another tablecontrol
under a tabstrip.
Now the problem is that after clicking any tab of the tabstrip, the checkbox of the above table control is not remaining
clicked.
I want to keep it clicked untill i click another checkbox of table control.
Pls help me to solve the problem...
‎2009 Dec 30 11:07 AM
If you click any of the tabs in tabstrip, system calls PBO of the screen, becuase your table control and tabstrips in the same screen, system calls PBO and refresh the checkbox. so you need save the checkbox value in the first table control into the internal table of table control..
a®
‎2009 Dec 30 11:07 AM
If you click any of the tabs in tabstrip, system calls PBO of the screen, becuase your table control and tabstrips in the same screen, system calls PBO and refresh the checkbox. so you need save the checkbox value in the first table control into the internal table of table control..
a®
‎2009 Dec 31 5:05 AM
Hi,
Can u pls post a sample code for that part?That will helpful for me...
‎2009 Dec 31 7:14 AM
Hi ,
It is very simple .
1. If only one check box is there , just keep the value of this in an global variable in PBO.
Do not clear this global variable in PAI.
2. If many checkboxes are there i.e each row has one check box.Just make an extra field in your display internal table with check box value.Now, in PBO , just populate the value of this , based on check box value and save in internal table.
Hope you understand it.
‎2009 Dec 31 10:08 AM
Hi,
The selectcolumn field of my internal table is remaining populated in the pbo also but while displaying the screen the field is not showing clicked.pls help.