diff options
author | Artur Signell <artur@vaadin.com> | 2013-03-19 20:27:22 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-03-19 20:27:37 +0200 |
commit | 17f64543bcc74f74017a3d1c13e5db83c7a4ec41 (patch) | |
tree | 1d885710b60046b36f7e14756b3a9f4cc59c6c3e | |
parent | d816697f2d87c6c3a8ae68003d0d2e3c142b3c5f (diff) | |
download | vaadin-framework-7.0.3.tar.gz vaadin-framework-7.0.3.zip |
Disabled TabIndex warning for now (#11325)7.0.3
Change-Id: I89311c7e4bdab3a70aa335c203ef57badab7bec8
-rw-r--r-- | client/src/com/vaadin/client/ui/AbstractComponentConnector.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index 74cb85c297..ecd6abae08 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -142,9 +142,13 @@ public abstract class AbstractComponentConnector extends AbstractConnector ((Focusable) getWidget()) .setTabIndex(((TabIndexState) getState()).tabIndex); } else { - VConsole.error("Tab index received for " - + Util.getSimpleName(getWidget()) - + " which does not implement Focusable"); + /* + * TODO Enable this error when all widgets have been fixed to + * properly support tabIndex, i.e. implement Focusable + */ + // VConsole.error("Tab index received for " + // + Util.getSimpleName(getWidget()) + // + " which does not implement Focusable"); } } Profiler.leave("AbstractComponentConnector.onStateChanged update tab index"); |