From bd4f8df793edef2dffdf3365e859979e5a86280d Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 20 Mar 2012 14:43:24 +0200 Subject: Added requestRepaintall helper to AbstractComponentContainer and use the same helper and logic in all component containers including Form, Table and CustomField --- src/com/vaadin/ui/Form.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/com/vaadin/ui/Form.java') diff --git a/src/com/vaadin/ui/Form.java b/src/com/vaadin/ui/Form.java index d66fae76ca..1abfefbc58 100644 --- a/src/com/vaadin/ui/Form.java +++ b/src/com/vaadin/ui/Form.java @@ -1417,6 +1417,10 @@ public class Form extends AbstractField implements Item.Editor, return new ComponentIterator(); } + public void requestRepaintAll() { + AbstractComponentContainer.requestRepaintAll(this); + } + public int getComponentCount() { int count = 0; if (layout != null) { -- cgit v1.2.3