[libGDX] Move a table below a table

Hi!

I’m making an online video-game with libGDX.

http://www.upimg.fr/ih/uwof.png

I’m trying to move the orange background to the left and to the right bellow the table which contains slots, but I really don’t know how I can do this in the same table.

Please do you have ideas about this ?

I found the solution.

public TurnUI(){
		//Création des TurnSlot de TEST
		turnSlots.add(new TurnSlot(1));
		turnSlots.add(new TurnSlot(2));
		turnSlots.add(new TurnSlot(3));
		
		//Création de la table contenant les TurnSlot
		Table turnTable = new Table();
		turnTable.debug();
		
		for(TurnSlot slot : turnSlots){
			turnTable.add(slot).height(50).width(34).space(10);
		}
		
		//Mise à jour visuelle (TODO : vérifie si c'est utile)
		turnTable.pack();
		
		this.setFillParent(true);
		
		//Ajout des slots
		this.right().bottom().add(turnTable).pad(10);
		this.row();
		
		//Ajout de la flèche au dessus du slot actuel (on récupère la cell pour la bouger)
		turnArrow = new TurnArrow(this);
		Cell<TurnArrow> cell = this.add(turnArrow).size(50).padTop(-60).left();
		turnArrow.create(cell);
		
		this.pack();
	}