From 5076f55235c41c3dd99560401f96798222d71a6a Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 9 Mar 2010 17:01:52 +0000 Subject: [PATCH] Fix for #3554 - Form.addItemProperty() resets caption created by FieldFactory svn changeset:11732/svn branch:6.3 --- src/com/vaadin/ui/Form.java | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/com/vaadin/ui/Form.java b/src/com/vaadin/ui/Form.java index 678c323dc3..4f417c4b94 100644 --- a/src/com/vaadin/ui/Form.java +++ b/src/com/vaadin/ui/Form.java @@ -464,20 +464,7 @@ public class Form extends AbstractField implements Item.Editor, Buffered, Item, } // Configures the field - try { - field.setPropertyDataSource(property); - String caption = id.toString(); - if (caption.length() > 50) { - caption = caption.substring(0, 47) + "..."; - } - if (caption.length() > 0) { - caption = "" + Character.toUpperCase(caption.charAt(0)) - + caption.substring(1, caption.length()); - } - field.setCaption(caption); - } catch (final Throwable ignored) { - return false; - } + field.setPropertyDataSource(property); // Register and attach the created field addField(id, field); -- 2.39.5