I want to add a south panel to SplitLayout.
The GWT showcase shows that you can add two south panel to the SplitLayout widget and the layout will place them in order.
My problem is that I only want to put one south panel into SplitLayout but I want to position it to the place of the inner south panel. How can I do that?

I have found a solution for my problem:
I used two
SplitLayout. The outer one has a west and a center panel. This center contains the innerSplitLayout, which contains the desired south panel and a center panel.This way I can get what I wanted; though this solution produces a more complicated html.