You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Ticket2434.java 621B

123456789101112131415161718192021222324252627282930
  1. package com.vaadin.tests.tickets;
  2. import com.vaadin.server.LegacyApplication;
  3. import com.vaadin.tests.TestForTablesInitialColumnWidthLogicRendering;
  4. import com.vaadin.ui.LegacyWindow;
  5. import com.vaadin.ui.Table;
  6. public class Ticket2434 extends LegacyApplication {
  7. @Override
  8. public void init() {
  9. LegacyWindow w = new LegacyWindow();
  10. setMainWindow(w);
  11. Table t = TestForTablesInitialColumnWidthLogicRendering.getTestTable(3,
  12. 50);
  13. t.setPageLength(0);
  14. t.addStyleName("bordered");
  15. w.addComponent(t);
  16. setTheme("tests-tickets");
  17. }
  18. }