diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-23 18:59:45 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-23 19:02:40 +0200 |
commit | d553c3eca98e574d8d6a0b1f2a0276093f53b55e (patch) | |
tree | 833ba1f75ebd8a985c3d0733c7f2851ec42ad09b | |
parent | 7077cdacf8f28b5658e705598c794d7843544707 (diff) | |
download | vaadin-framework-d553c3eca98e574d8d6a0b1f2a0276093f53b55e.tar.gz vaadin-framework-d553c3eca98e574d8d6a0b1f2a0276093f53b55e.zip |
Do not build field for Address to avoid conversion problems
Change-Id: Ib168032668d6115e955e87cade397a6c9e31a3c3
-rw-r--r-- | uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java b/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java index e1e306877d..9c8678730e 100644 --- a/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java +++ b/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java @@ -23,7 +23,9 @@ public class FormsCssTest extends HorizontalLayout { FieldGroup fg = new BeanFieldGroup<Person>(Person.class); fg.setItemDataSource(new BeanItem<Person>(new Person())); for (Object propId : fg.getUnboundPropertyIds()) { - vl.addComponent(fg.buildAndBind(propId)); + if (!"address".equals(propId)) { + vl.addComponent(fg.buildAndBind(propId)); + } } addComponent(vl); |