Split panel inside a tabshit

Hi,
I want to create a SplitPanel inside a TabSheet, but I cant dot that! nothing is displayed :frowning:


 TabSheet myTabshit= new TabSheet();
SplitPanel vertic = new SplitPanel();
vertic.setFirstComponent(myFirstlaout);
 vertic.setSecondComponent(mySecondLayout);
 myTabshit.addTab(vertic,"myTab", null);

You need to give a size to the SplitPanel. Otherwise it won’t render properly