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

TABSTRIP CONTROL BASED ON TABLE CONTROL

Former Member
0 Likes
604

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

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
538

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®

4 REPLIES 4
Read only

former_member194669
Active Contributor
0 Likes
539

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®

Read only

0 Likes
538

Hi,

Can u pls post a sample code for that part?That will helpful for me...

Read only

Former Member
0 Likes
538

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.

Read only

Former Member
0 Likes
538

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.