Browse Source

Test case that was missing from merge of #2799 to 6.0.

svn changeset:7164/svn branch:6.0
tags/6.7.0.beta1
Henri Sara 15 years ago
parent
commit
f65586e992
1 changed files with 59 additions and 0 deletions
  1. 59
    0
      src/com/itmill/toolkit/tests/components/table/RowAdditionTest.java

+ 59
- 0
src/com/itmill/toolkit/tests/components/table/RowAdditionTest.java View File

@@ -0,0 +1,59 @@
package com.itmill.toolkit.tests.components.table;
import com.itmill.toolkit.data.Item;
import com.itmill.toolkit.data.util.IndexedContainer;
import com.itmill.toolkit.tests.components.TestBase;
import com.itmill.toolkit.ui.Button;
import com.itmill.toolkit.ui.HorizontalLayout;
import com.itmill.toolkit.ui.Table;
import com.itmill.toolkit.ui.Button.ClickEvent;
public class RowAdditionTest extends TestBase {
@Override
protected String getDescription() {
return "Adding a row should refresh client area only if newly added row is in the rendered area.";
}
@Override
protected Integer getTicketNumber() {
return new Integer(2799);
}
@Override
protected void setup() {
final Table table = new Table();
final IndexedContainer container = (IndexedContainer) table
.getContainerDataSource();
table.addContainerProperty("column1", String.class, "test");
for (int i = 0; i < 100; ++i) {
table.addItem();
}
HorizontalLayout hl = new HorizontalLayout();
hl.addComponent(new Button("Add first", new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Item item = container.addItemAt(0, new Object());
item.getItemProperty("column1").setValue("0");
}
}));
hl.addComponent(new Button("Add at position 50",
new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Item item = container.addItemAt(50, new Object());
item.getItemProperty("column1").setValue("50");
}
}));
hl.addComponent(new Button("Add at position 100",
new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
Item item = container.addItemAt(100, new Object());
item.getItemProperty("column1").setValue("100");
}
}));
getLayout().addComponent(table);
getLayout().addComponent(hl);
}
}

Loading…
Cancel
Save