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 a Docking Container

Former Member
0 Likes
1,508

Hello,

is it possible to split a docking container and how to solve that.

I have docked a container at the bottom of my custom container. Now i need another docked or splitted at the right side.

Thanks 4 your answers.

1 REPLY 1
Read only

sharat_chandra
Product and Topic Expert
Product and Topic Expert
0 Likes
602

Hi,

You can use the class CL_GUI_SPLITTER_CONTAINER. Pass the docking container reference as the PARENT for the constructor method of the splitter class.

For e.g.

CREATE OBJECT <ref_to_splitter>

EXPORTING

parent = <ref_to_dock>

rows = <r>

columns = <c>.

You may get any number of splitter containers based on the rows & cols specified.