Hi All,
How can I get the tabs of a tab sheet to be of the same width.
Example :-
import com.vaadin.ui.Label;
import com.vaadin.ui.TabSheet;
public class MainTabSheet extends TabSheet {
public MainTabSheet() {
setWidth("400px");
addTab(new Label("Order Parts"),"Order Parts");
addTab(new Label("Help"),"Help");
}
}
The tab takes the width of the caption, how can I make it take 200px for the first tab and 200px for the second tab.
Thanks in Advance.
Divam