Package com.vaadin.tests.components.tabsheet

Source Code of com.vaadin.tests.components.tabsheet.ScrollbarsInNestedTabsheets

package com.vaadin.tests.components.tabsheet;

import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.DateField;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.TabSheet;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;

@SuppressWarnings("serial")
public class ScrollbarsInNestedTabsheets extends TestBase {

    @Override
    public void setup() {
        setTheme("chameleon");
        final Label l = new Label("Select Sub Tab 2");
        final TabSheet t = new TabSheet();
        final TabSheet t2 = getTabSheet();
        t.addTab(t2, "Main Tab");
        addComponent(l);
        addComponent(t);
    }

    private TabSheet getTabSheet() {
        final TabSheet t = new TabSheet();
        t.addTab(getDummyLayout1(), "Sub Tab 1");
        t.addTab(getDummyLayout2(), "Sub Tab 2");

        return t;
    }

    private Layout getDummyLayout1() {
        final VerticalLayout l = new VerticalLayout();
        l.addComponent(new DateField("Date"));

        return l;
    }

    private Layout getDummyLayout2() {
        final VerticalLayout l = new VerticalLayout();
        l.addComponent(new DateField("Date"));
        l.addComponent(new TextField("TextField"));

        return l;
    }

    @Override
    protected String getDescription() {
        return "Nested tabsheets show unwanted scrollbars with Chameleon theme when the inner tabsheet is resized";
    }

    @Override
    protected Integer getTicketNumber() {
        return 8625;
    }

}
TOP

Related Classes of com.vaadin.tests.components.tabsheet.ScrollbarsInNestedTabsheets

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.