Package com.vaadin.tests.tickets

Source Code of com.vaadin.tests.tickets.Ticket2434

package com.vaadin.tests.tickets;

import com.vaadin.server.LegacyApplication;
import com.vaadin.tests.TestForTablesInitialColumnWidthLogicRendering;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.Table;

public class Ticket2434 extends LegacyApplication {

    @Override
    public void init() {

        LegacyWindow w = new LegacyWindow();

        setMainWindow(w);

        Table t = TestForTablesInitialColumnWidthLogicRendering.getTestTable(3,
                50);

        t.setPageLength(0);

        t.addStyleName("bordered");

        w.addComponent(t);

        setTheme("tests-tickets");

    }

}
TOP

Related Classes of com.vaadin.tests.tickets.Ticket2434

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.