diff options
author | Artur Signell <artur@vaadin.com> | 2012-03-20 14:43:24 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-03-21 15:28:05 +0200 |
commit | bd4f8df793edef2dffdf3365e859979e5a86280d (patch) | |
tree | 49d2df4296aaae6bcb365d663b11d57ce2bcb238 /src/com/vaadin/ui/Form.java | |
parent | 068c74b31b4120d32267c5380d78d826aff0ca23 (diff) | |
download | vaadin-framework-bd4f8df793edef2dffdf3365e859979e5a86280d.tar.gz vaadin-framework-bd4f8df793edef2dffdf3365e859979e5a86280d.zip |
Added requestRepaintall helper to AbstractComponentContainer and use the
same helper and logic in all component containers including Form,
Table and CustomField
Diffstat (limited to 'src/com/vaadin/ui/Form.java')
-rw-r--r-- | src/com/vaadin/ui/Form.java | 4 |
1 files changed, 4 insertions, 0 deletions
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<Object> implements Item.Editor, return new ComponentIterator(); } + public void requestRepaintAll() { + AbstractComponentContainer.requestRepaintAll(this); + } + public int getComponentCount() { int count = 0; if (layout != null) { |