Hi,
public TabSheetExample() {
TabSheet mMainTabSheet = new TabSheet();
mMainTabSheet.addClassName(VegaCSSConstants.VEGA_INNER_TABSHEET);
mMainTabSheet.add("EQUITY", new Div(new Text("This is the Equity tab content")));
mMainTabSheet.add("FUND", new Div(new Text("This is the Fund tab content")));
mMainTabSheet.add("CASH", new Div(new Text("This is the Cash tab content")));
mMainTabSheet.add("FIXED INCOME", new Div(new Text("This is the FI tab content")));
mMainTabSheet.add("ALT INV", new Div(new Text("This is the Alt Inv tab content")));
mMainTabSheet.add("DERIVATIVE", new Div(new Text("This is the Derivative tab content")));
add(mMainTabSheet);
}
Here is my code I going to set Border to each tab but I am not getting result plz anyone can suggest me ?