Application Development 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: 

Split a Docking Container

Former Member
0 Kudos

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

sharat_chandra
Active Participant
0 Kudos

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.