03-04-2008 6:25 PM
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.
03-05-2008 3:12 AM
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.