package com.vaadin.tests.components.table; import com.vaadin.tests.components.TestBase; import com.vaadin.v7.ui.Table; public class EditableTableFocus extends TestBase { @Override public void setup() { Table table = new Table(); table.addContainerProperty("TextField", String.class, null); table.setColumnWidth("TextField", 150); for (int i = 1; i < 100; i++) { table.addItem(new String[] { "" }, new Integer(i)); } table.setEditable(true); addComponent(table); } @Override protected String getDescription() { return "IE-Problem: TextFields in table lose their focus, no input possible
" + "Try inputs in the table's textfields in the freshly started programm. For the moment all works fine.
"
+ "Then scroll the table down one page or more.
"
+ "Try again to make some inputs. Nothing happens...
"
+ "Now the textfields always lose their focus immediately after they got it and no input is taken.
" + "This problem is exclusive to Microsoft's Internet Explorer!"; } @Override protected Integer getTicketNumber() { return 7965; } }