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

Split container

Former Member
0 Likes
674

hy all, i'm facing an issue with splitting my container.

I need to split my container in 2 columns. the right column should have only one row, but the second column must have 2 rows.

i started with a docking container dock at top, but when i split the left container in 2 rows, the second rows goes under the left coloumn. How to avoid that?

Is it the right choice to use the docking container?

Thanx in advance.

2 REPLIES 2
Read only

Clemenss
Active Contributor
0 Likes
593

Hi EBONGUE ANDRE,

if you want to split a container, then you should create a splitter container of type CL_GUI_SPLITTER_CONTAINER or CL_GUI_EASY_SPLITTER_CONTAINER. First create a splitter with 2 columns, split vertical. Then create a second splitter in one column, split horizontal.

Everything may be placed in a docking container. This is quite easy because you will not need any control area in a screen (dynpro) because the docking container will dock to any screen, also selection screen.

You must make sure that container creation happens at PBO.

Regards,

Clemens

Read only

Former Member
0 Likes
593

solve it. thanx.