I am new in GXT and I'm trying to create TabPanel which has some tabs on the left side and some on the right (like on the picture 2). I can without any problem create the simplest TabPanel like on the picture 1.
In GWT I've managed to move some tabs to the right side in that way:
tabLayoutPanel.getTabWidget(i).getParent().addStyleName("right");
and CSS:
.right {
float: right;
margin-right: 6px;
}
But I don't find option like getTabWidget in GXT TabPanel.
Can you please help me with this case? Thanks in advance.