main.getContent().setSizeFull();
((MarginHandler) main.getContent()).setMargin(true);
setTheme("tests-tickets");
Accordion ts;
ts = new Accordion();
ts.setSizeFull();
ts.setWidth("300px");
TextArea l = new TextArea("DSFS");
l.setRows(2);
l.setStyleName("red");
l.setSizeFull();
ts.addTab(l, "100% h component", null);
Label testContent = new Label(
"TabSheet by default uses caption, icon, errors etc. from Components. ");
testContent.setCaption("Introduction to test");
ts.addTab(testContent);
// main.addComponent(ts);
ts = new Accordion();
ts.setSizeFull();
ts.setHeight("200px");
ts.setWidth("300px");
l = new TextArea("DSFS");
l.setRows(2);
l.setStyleName("red");
l.setSizeFull();
ts.addTab(l, "200px h component", null);
testContent = new Label(
"TabSheet by default uses caption, icon, errors etc. from Components. ");
testContent.setCaption("Introduction to test");
ts.addTab(testContent);
main.addComponent(ts);
ts = new Accordion();
ts.setSizeFull();
ts.setHeight("50%");
ts.setWidth("300px");
l = new TextArea("DSFS");
l.setRows(2);
l.setStyleName("red");
l.setSizeFull();
ts.addTab(l, "50% h component", null);
testContent = new Label(
"TabSheet by default uses caption, icon, errors etc. from Components. ");
testContent.setCaption("Introduction to test");
ts.addTab(testContent);
// main.addComponent(ts);
}